(my)TinyLibC 0.0.1
little tiny pretty lib c
Loading...
Searching...
No Matches
tlcfs.h
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2021
3** LIBMY
4** File description:
5** the file part of libmy
6*/
7
8#ifndef MY_FS_H_
9 #define MY_FS_H_
10
16char *fs_get_content(char const *path);
17
23int fs_get_size(char const *path);
24
30int fs_open_ronly(char const *path);
31
32#endif
char * fs_get_content(char const *path)
get the entire content of file path (if readable)
int fs_open_ronly(char const *path)
open file path with read only
int fs_get_size(char const *path)
get size of the content of filepath (if stat can)