-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdbxsys.h
62 lines (49 loc) · 2.14 KB
/
dbxsys.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
UnDBX - Tool to extract e-mail messages from Outlook Express DBX files.
Copyright (C) 2008-2015 Avi Rozen <[email protected]>
DBX file format parsing code is based on DbxConv - a DBX to MBOX
Converter. Copyright (C) 2008, 2009 Ulrich Krebs
RFC-2822 and RFC-2047 parsing code is adapted from GNU Mailutils -
a suite of utilities for electronic mail, Copyright (C) 2002,
2003, 2004, 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
This file is part of UnDBX.
UnDBX is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DBX_SYS_H_
#define _DBX_SYS_H_
#include <stdio.h>
#include <time.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef unsigned long long int filetime_t;
char **sys_glob(char *parent, char *pattern, int *num_files);
void sys_glob_free(char **pglob);
int sys_mkdir(char *parent, char *dir);
int sys_chdir(char *dir);
char *sys_getcwd(void);
unsigned long long int sys_filesize(char *parent, char *filename);
int sys_delete(char *parent, char *filename);
int sys_move(char *parent, char *filename, char *destination);
int sys_set_time(char *filename, time_t timestamp);
int sys_set_filetime(char *filename, filetime_t filetime);
char *sys_basename(char *path);
char *sys_dirname(char *path);
size_t sys_fread(void * ptr, size_t size, size_t nitems, FILE * stream);
void sys_fread_long_long(long long int *value, FILE *file);
void sys_fread_int(int *value, FILE *file);
void sys_fread_short(short *value, FILE *file);
#ifdef __cplusplus
};
#endif
#endif /* _DBX_SYS_H_ */