sakisafe/sakisafecli/funcs.h
qorg11 1d71334340 Better documentation in the code
New flag: -C, which prints the current settings (Still have to add it to the manpage and help message)
2022-06-23 16:45:46 +02:00

24 lines
496 B
C

#pragma once
#include <stdlib.h>
/* Function used from curl to write data to a buffer */
size_t
write_data(void *buffer, size_t size, size_t nmemb, void *userp);
/* Print usage message (when nothing is given to sakisafecli) */
void
print_usage();
/* Print help message (-h) */
void
print_help();
/* Function used to display progress when uploading a file */
void
progress(
void *clientp, double dltotal, double dlnow, double ultotal, double ulnow);
/* Print config */
void
print_config();