From 44d29a33df81ac07163d5146a9e43a0c4fb80af0 Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Sun, 13 Sep 2020 22:06:40 -0400 Subject: new shell --- src/user/include/knob/file.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/user/include/knob/file.h') diff --git a/src/user/include/knob/file.h b/src/user/include/knob/file.h index 4d0da87..a0d084f 100644 --- a/src/user/include/knob/file.h +++ b/src/user/include/knob/file.h @@ -9,8 +9,11 @@ const char *remove_prefix(const char *path, uint8_t *dn_out); struct file *open_file(const char *path); void close_file(struct file *f); +void _close_all_files(); uint32_t read_from_file(struct file *f, uint32_t max, void *buf); +//return value and max_length don't include null terminator +uint32_t read_line_from_file(struct file *f, char *sz, uint32_t max_length); uint32_t seek_file_to(struct file *f, uint32_t to); int32_t seek_file_by(struct file *f, int32_t by); -- cgit v1.2.3