Projects/1BIT/summer-semester/IJC-2/io.h
2026-04-14 19:28:46 +02:00

13 lines
No EOL
206 B
C

// io.h
// Řešení IJC-DU2, příklad b), 22.4.2024
// Autor: Roman Nečas, FIT
// Přeloženo: gcc 11.4.0
#ifndef IO_H
#define IO_H
#include <stdio.h>
int read_word(char *s, int max, FILE *f);
#endif