mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
10 lines
154 B
Text
10 lines
154 B
Text
void readlog()
|
|
{
|
|
list line;
|
|
|
|
while (line = fgets(g_logPath, line))
|
|
g_log += strtok(line[0], "\n"); // add logfile entries w/o \n
|
|
}
|
|
|
|
|
|
|