/in/database.c: In function 'DataList':
/in/database.c:135:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j = 0; j < strlen(db->tables[i].name); j++)
^
/in/database.c: In function 'main':
/in/database.c:413:9: warning: implicit declaration of function 'gets'; did you mean 'fgets'? [-Wimplicit-function-declaration]
gets(command);
^~~~
fgets
In file included from /usr/include/stdio.h:862:0,
from /in/database.c:1:
In function 'fgets',
inlined from 'DataLoad' at /in/database.c:25:12:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:260:9: warning: call to '__fgets_chk_warn' declared with attribute warning: fgets called with bigger size than length of destination buffer
return __fgets_chk_warn (__s, __bos (__s), __n, __stream);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/tmp/ccen1nj5.o: In function `main':
database.c:(.text.startup+0x316): warning: the `gets' function is dangerous and should not be used.