bean/src/line.h
2023-09-28 18:24:23 +03:00

9 lines
184 B
C

#ifndef _LINE_H
#define _LINE_H
#include "carray.h"
#include "types.h"
void line_split(CArray *, String);
void line_clear(CArray *);
void line_destroy(CArray *);
#endif /* _LINE_H */