removed exploded files from gitignore

This commit is contained in:
asus
2024-01-26 11:53:44 +01:00
parent 57e4f2958e
commit ac37456160
4 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
/*
comment outside
*/
#include <stdio.h>
\
char *second_function() \
{ \
return "\
/*%c comment outside%c*/%c\
#include <stdio.h>%c\
char *second_function() \
{ \
return %c%s%c; \
}%c\
int main() \
{ \
char *program = second_function(); \
printf(program, 10, 10, 10, 10, 34, program, 34, 10, 10, 10, 10, 10, 10); \
return 0;%c \
/*%c comment inside%c */%c\
}%c\
"; \
}
int main() \
{ \
char *program = second_function(); \
printf(program, 10, 10, 10, 10, 34, program, 34, 10, 10, 10, 10, 10, 10); \
return 0;
/*
comment inside
*/
}