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
|
#ifndef PORTABLE_H
#define PORTABLE_H
#include <stdio.h>
#include <sys/types.h>
#if defined(_WIN32)
typedef __int64 portable_off_t;
#else
typedef off_t portable_off_t;
#endif
/** @file
* @brief Portable versions of functions that are platform dependent.
*/
namespace Portable
{
int system(const char *command,const char *args,bool commandHasConsole=true);
unsigned int pid(void);
const char * getenv(const char *variable);
void setenv(const char *variable,const char *value);
void unsetenv(const char *variable);
portable_off_t fseek(FILE *f,portable_off_t offset, int whence);
portable_off_t ftell(FILE *f);
FILE * fopen(const char *fileName,const char *mode);
void unlink(const char *fileName);
char pathSeparator(void);
char pathListSeparator(void);
const char * ghostScriptCommand(void);
const char * commandExtension(void);
bool fileSystemIsCaseSensitive();
FILE * popen(const char *name,const char *type);
int pclose(FILE *stream);
void sysTimerStart(void);
void sysTimerStop(void);
double getSysElapsedTime(void);
void sleep(int ms);
bool isAbsolutePath(const char *fileName);
void correct_path(void);
void setShortDir(void);
const char * strnstr(const char *haystack, const char *needle, size_t haystack_len);
const char * devNull();
bool checkForExecutable(const char *fileName);
}
extern "C" {
void * portable_iconv_open(const char* tocode, const char* fromcode);
size_t portable_iconv (void *cd, char** inbuf, size_t *inbytesleft,
char* * outbuf, size_t *outbytesleft);
int portable_iconv_close (void *cd);
}
#endif
|