summaryrefslogtreecommitdiff
path: root/src/user/include/knob/file.h
blob: 4d0da8733da662873db9ed02945194d5bd26809b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef KNOB_FILE_H
#define KNOB_FILE_H

#include <stdint.h>

struct file;

const char *remove_prefix(const char *path, uint8_t *dn_out);

struct file *open_file(const char *path);
void close_file(struct file *f);

uint32_t read_from_file(struct file *f, uint32_t max, void *buf);
uint32_t seek_file_to(struct file *f, uint32_t to);
int32_t seek_file_by(struct file *f, int32_t by);

uint32_t file_size(struct file *f) __attribute__ ((pure));

#endif