Fix exit() in library code, add --include/--max-size/--min-size
This commit is contained in:
+4
-4
@@ -22,13 +22,13 @@ typedef struct {
|
||||
|
||||
File *file_create(const char *path);
|
||||
void file_destroy(void *item);
|
||||
void file_load_data(File *file);
|
||||
bool file_load_data(File *file);
|
||||
File *file_receive(Config *config, int file_descriptor);
|
||||
void file_send_single_calls(File *file, int file_descriptor, bool use_metadata, int compression_level);
|
||||
void file_send_sendfile(File *file, int file_descriptor, bool use_metadata);
|
||||
bool file_send_single_calls(File *file, int file_descriptor, bool use_metadata, int compression_level);
|
||||
bool file_send_sendfile(File *file, int file_descriptor, bool use_metadata);
|
||||
size_t file_content_to_buffer(File *file);
|
||||
FileMetadata *file_metadata_create(struct stat *stats);
|
||||
void file_metadata_destroy(void *metadata);
|
||||
void to_disk(const char *path, const void *data, unsigned long long data_size);
|
||||
bool to_disk(const char *path, const void *data, unsigned long long data_size);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user