dish/line.h
2022-09-18 13:14:54 +08:00

7 lines
120 B
C

#ifndef _LINE_H_
#define _LINE_H_
#define LINE_BUF_SIZE 1024
char *readLine(void);
char **splitLine(char *line);
#endif