Remove C++-style comments from C files
This commit is contained in:
parent
4d0efeeb14
commit
600210a78b
|
@ -5,7 +5,7 @@
|
||||||
* http://www.gnu.org/copyleft/gpl.html for details.
|
* http://www.gnu.org/copyleft/gpl.html for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Below are all the includes used throughout the application.
|
/* Below are all the includes used throughout the application. */
|
||||||
|
|
||||||
/* options for text editors
|
/* options for text editors
|
||||||
kate: @KATE_MODELINE@
|
kate: @KATE_MODELINE@
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* http://www.gnu.org/copyleft/gpl.html for details.
|
* http://www.gnu.org/copyleft/gpl.html for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Below are all the includes used throughout the application.
|
/* Below are all the includes used throughout the application. */
|
||||||
|
|
||||||
/* options for text editors
|
/* options for text editors
|
||||||
kate: @KATE_MODELINE@
|
kate: @KATE_MODELINE@
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#ifndef HEADER_@CNAME@
|
#ifndef HEADER_@CNAME@
|
||||||
#define HEADER_@CNAME@
|
#define HEADER_@CNAME@
|
||||||
|
|
||||||
// standard includes, or includes needed for type declarations
|
/* standard includes, or includes needed for type declarations */
|
||||||
|
|
||||||
/* options for text editors
|
/* options for text editors
|
||||||
kate: @KATE_MODELINE@
|
kate: @KATE_MODELINE@
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
#include "@HEADER_NAME@"
|
#include "@HEADER_NAME@"
|
||||||
|
|
||||||
// Below are all the includes used throughout the library.
|
/* Below are all the includes used throughout the library. */
|
||||||
|
|
||||||
/* options for text editors
|
/* options for text editors
|
||||||
kate: @KATE_MODELINE@
|
kate: @KATE_MODELINE@
|
||||||
|
|
|
@ -21,10 +21,10 @@ int main(int argc, char* argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
if(argc == 1) {
|
if(argc == 1) {
|
||||||
// empty argument list
|
/* empty argument list */
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
/* TODO */
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue