13 lines
No EOL
206 B
C
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 |