dish/line.h

7 lines
120 B
C
Raw Normal View History

#ifndef _LINE_H_
#define _LINE_H_
#define LINE_BUF_SIZE 1024
2022-09-18 05:14:30 +00:00
char *readLine(void);
char **splitLine(char *line);
#endif