950b4526c7
- Remove incorrect header styles - Use export.replace where header style was previously needed - Check compilation of tests using system gcc
13 lines
269 B
C
13 lines
269 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
FILE *f = fopen("stdio/stdio.in", "r");
|
|
if (fseek(f, 14, SEEK_CUR) < 0) {
|
|
puts("fseek error");
|
|
return 1;
|
|
}
|
|
char buffer[256];
|
|
printf("%s", fgets(buffer, 256, f));
|
|
printf("ftell: %ld\n", ftello(f));
|
|
}
|