Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FileSystem.h - github.com/SoftEtherVPN/libhamcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d6140827fe636313cda8895006b7bd8c999afc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FILESYSTEM_H
#define FILESYSTEM_H

#include <stdbool.h>
#include <stdio.h>

FILE *FileOpen(const char *path);
bool FileClose(FILE *file);

bool FileRead(FILE *file, void *dst, const size_t size);
bool FileSeek(FILE *file, const size_t offset);

#endif