changed k&r naming scheme, renamed files
parent
3fd2a66b17
commit
291e9e87ec
|
@ -13,9 +13,13 @@
|
||||||
# except k&r
|
# except k&r
|
||||||
!k\&r/
|
!k\&r/
|
||||||
# except chapters
|
# except chapters
|
||||||
!k\&r/**/[0-9]*/
|
!k\&r/[0-9]*/
|
||||||
# and excercise solutions
|
# and excercise solutions
|
||||||
!k\&r/**/[0-9]*.c
|
!k\&r/*/[0-9]*.c
|
||||||
|
!k\&r/*/[0-9]*/
|
||||||
|
!k\&r/*/[0-9]*/*.c
|
||||||
|
# do ignore _ prefixed files
|
||||||
|
k\&r/**/_*
|
||||||
# and header files
|
# and header files
|
||||||
!k\&r/**/*.h
|
!k\&r/**/*.h
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
/* compile with 04-find-no-overflow.c or 04-find-opt.c
|
/* compile with find-no-overflow.c or find-opt.c
|
||||||
* gcc 04-find.c [04-find-no-overflow.c | 04-find-opt.c] */
|
* gcc main.c [find-no-overflow.c | find-opt.c] */
|
||||||
|
|
||||||
int find(char *pattern, char lineno_flag, char except_flag);
|
int find(char *pattern, char lineno_flag, char except_flag);
|
||||||
|
|
Loading…
Reference in New Issue