Go to the documentation of this file.00001 #ifndef SherpackUtilities_h
00002 #define SherpackUtilities_h
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include <stdlib.h>
00012 #include <stdio.h>
00013 #include <string>
00014 #include <string.h>
00015 #include <assert.h>
00016 #include <zlib.h>
00017
00018 #include <sys/stat.h>
00019 #include <openssl/md5.h>
00020 #include <fcntl.h>
00021
00022
00023
00024 #define SET_BINARY_MODE(file)
00025
00026 #define CHUNK 16384
00027
00028
00029 namespace spu {
00030
00031
00032 int def(FILE*, FILE*, int);
00033 int inf(FILE*, FILE*);
00034 void zerr(int);
00035 int Unzip(std::string, std::string );
00036
00037
00038
00039
00040
00041 int parseoct(const char*, size_t);
00042
00043 int is_end_of_archive(const char*);
00044
00045 void create_dir(char*, int);
00046
00047 FILE* create_file(char*, int);
00048
00049 int verify_checksum(const char*);
00050
00051 void Untar(FILE*, const char*);
00052
00053
00054 void md5_File(std::string, char*);
00055
00056
00057 }
00058 #endif