]> git.xonotic.org Git - xonotic/gmqcc.git/blob - platform.h
bde63d7023e2a9047435f52eb1cad3653ddc60c6
[xonotic/gmqcc.git] / platform.h
1 /*
2  * Copyright (C) 2012, 2013
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23
24 #ifndef GMQCC_PLATFORM_HDR
25 #define GMQCC_PLATFORM_HDR
26
27 #ifndef GMQCC_PLATFORM_HEADER
28 #   error "This header shouldn't be included!"
29 #endif
30
31 #undef GMQCC_PLATFORM_HEADER
32 #include <stdarg.h>
33 #include <time.h>
34 #include <stdio.h>
35
36 #ifdef _WIN32
37 #   ifndef STDERR_FILENO
38 #       define STDERR_FILENO 2
39 #   endif
40 #   ifndef STDOUT_FILENO
41 #       define STDOUT_FILENO 1
42 #   endif
43 #   ifndef __MINGW32__
44 #       define _WIN32_LEAN_AND_MEAN
45 #       include <windows.h>
46 #       include <io.h>
47 #       include <fcntl.h>
48
49         struct dirent {
50             long               d_ino;
51             unsigned short     d_reclen;
52             unsigned short     d_namlen;
53             char               d_name[FILENAME_MAX];
54         };
55
56         typedef struct {
57             struct _finddata_t dd_dta;
58             struct dirent      dd_dir;
59             long               dd_handle;
60             int                dd_stat;
61             char               dd_name[1];
62         } DIR;
63
64 #       ifdef S_ISDIR
65 #           undef  S_ISDIR
66 #       endif /*! S_ISDIR */
67 #       define S_ISDIR(X) ((X)&_S_IFDIR)
68 #   else
69 #       include <dirent.h>
70 #   endif /*!__MINGW32__*/
71 #else
72 #   include <sys/types.h>
73 #   include <sys/stat.h>
74 #   include <unistd.h>
75 #   include <dirent.h>
76 #endif /*!_WIN32*/
77
78 int platform_vsnprintf(char *buffer, size_t bytes, const char *format, va_list arg);
79 int platform_vsscanf(const char *str, const char *format, va_list arg);
80 const struct tm *platform_localtime(const time_t *timer);
81 const char *platform_ctime(const time_t *timer);
82 char *platform_strncat(char *dest, const char *src, size_t num);
83 const char *platform_tmpnam(char *str);
84 const char *platform_getenv(char *var);
85 int platform_vasprintf(char **dat, const char *fmt, va_list args);
86 char *platform_strcat(char *dest, const char *src);
87 char *platform_strncpy(char *dest, const char *src, size_t num);
88 const char *platform_strerror(int err);
89 FILE *platform_fopen(const char *filename, const char *mode);
90 size_t platform_fread(void *ptr, size_t size, size_t count, FILE *stream);
91 size_t platform_fwrite(const void *ptr, size_t size, size_t count, FILE *stream);
92 int platform_fflush(FILE *stream);
93 int platform_vfprintf(FILE *stream, const char *format, va_list arg);
94 int platform_fclose(FILE *stream);
95 int platform_ferror(FILE *stream);
96 int platform_fgetc(FILE *stream);
97 int platform_fputs(const char *str, FILE *stream);
98 int platform_fseek(FILE *stream, long offset, int origin);
99 long platform_ftell(FILE *stream);
100 int platform_mkdir(const char *path, int mode);
101 DIR *platform_opendir(const char *path);
102 int platform_closedir(DIR *dir);
103 struct dirent *platform_readdir(DIR *dir);
104 int platform_isatty(int fd);
105
106 #endif