aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/file.h
blob: c25ef40447ae00234999974965a03b9007f85114 (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                                          


                  

                   


                                          
                                    
 

                        
                                  
                                                   
 
      
/*
 * 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);

void file_close(int fd);

int file_exists(const char *path);
int file_read(int fd, char **output, size_t *size);

#endif