AcouSTO
version 2.0
◆
getlines()
int getlines
(
FILE *
file
)
29
{
30
char
tmpline[256];
31
int
n=0;
32
33
int
size
= 256;
34
35
36
if
(file){
37
while
(NULL != fgets(&tmpline[0], size, file)) {
38
n++;
39
}
40
rewind(file);
41
}
42
43
44
return
n;
45
}
size
int size
Definition:
globals.h:81
Acousto2.0
trunk
src
utils
utils.h
Generated on Wed Apr 5 2017 14:32:04 for AcouSTO by
1.8.13