blob: a6d9dc13adf911ff503330ade73eae9c8fb53d81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __FILE_H__
#define __FILE_H__
#include <stddef.h>
int rm_rf(const char *dir);
int my_chdir(const char *dir, char **old);
char *my_readlink(const char *path);
int file_dup(int fd);
void file_close(int fd);
int file_exists(const char *path);
int file_read(int fd, unsigned char **output, size_t *size);
#endif
|