repo.or.cz
/
opsoft_archive.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Very old versions for history.
[opsoft_archive.git]
/
silentbob
/
silent_bob-1.2
/
src
/
sblib
/
find_cfiles.cpp
blob
8e3556e89587c94c34955018256022c449376ed2
1
/*
2
* (c) Oleg Puchinin 2006
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#include
"../head.h"
8
9
int
find_cfiles
()
10
{
11
find_one_ext
(
"*.c"
);
12
find_one_ext
(
"*.h"
);
13
find_one_ext
(
"*.cpp"
);
14
find_one_ext
(
"*.cc"
);
15
find_one_ext
(
"*.cxx"
);
16
return
0
;
17
}
18