]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ansi.c
moving the length multiplication for 64 bit types from util_endianswap into util_swap...
[xonotic/gmqcc.git] / ansi.c
1 /*
2  * Copyright (C) 2012, 2013, 2014
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 #define GMQCC_PLATFORM_HEADER
24 #include <string.h>
25 #include <stdlib.h>
26
27 #include "platform.h"
28 #include "gmqcc.h"
29
30 int platform_vsnprintf(char *buffer, size_t bytes, const char *format, va_list arg) {
31     return vsnprintf(buffer, bytes, format, arg);
32 }
33
34 int platform_vsscanf(const char *str, const char *format, va_list arg) {
35     return vsscanf(str, format, arg);
36 }
37
38 const struct tm *platform_localtime(const time_t *timer) {
39     return localtime(timer);
40 }
41
42 const char *platform_ctime(const time_t *timer) {
43     return ctime(timer);
44 }
45
46 char *platform_strncat(char *dest, const char *src, size_t num) {
47     return strncat(dest, src, num);
48 }
49
50 const char *platform_getenv(const char *var) {
51     return getenv(var);
52 }
53
54 int platform_vasprintf(char **dat, const char *fmt, va_list args) {
55     int     ret;
56     int     len;
57     char   *tmp = NULL;
58     char    buf[128];
59     va_list cpy;
60
61     va_copy(cpy, args);
62     len = vsnprintf(buf, sizeof(buf), fmt, cpy);
63     va_end (cpy);
64
65     if (len < (int)sizeof(buf)) {
66         *dat = util_strdup(buf);
67         return len;
68     }
69
70     tmp = (char*)mem_a(len + 1);
71     if ((ret = vsnprintf(tmp, len + 1, fmt, args)) != len) {
72         mem_d(tmp);
73         *dat = NULL;
74         return -1;
75     }
76
77     *dat = tmp;
78     return len;
79 }
80
81 char *platform_strcat(char *dest, const char *src) {
82     return strcat(dest, src);
83 }
84
85 char *platform_strncpy(char *dest, const char *src, size_t num) {
86     return strncpy(dest, src, num);
87 }
88
89 const char *platform_strerror(int err) {
90     return strerror(err);
91 }
92
93 FILE *platform_fopen(const char *filename, const char *mode) {
94     return fopen(filename, mode);
95 }
96
97 size_t platform_fread(void *ptr, size_t size, size_t count, FILE *stream) {
98     return fread(ptr, size, count, stream);
99 }
100
101 size_t platform_fwrite(const void *ptr, size_t size, size_t count, FILE *stream) {
102     return fwrite(ptr, size, count, stream);
103 }
104
105 int platform_fflush(FILE *stream) {
106     return fflush(stream);
107 }
108
109 int platform_vfprintf(FILE *stream, const char *format, va_list arg) {
110     return vfprintf(stream, format, arg);
111 }
112
113 int platform_fclose(FILE *stream) {
114     return fclose(stream);
115 }
116
117 int platform_ferror(FILE *stream) {
118     return ferror(stream);
119 }
120
121 int platform_fgetc(FILE *stream) {
122     return fgetc(stream);
123 }
124
125 int platform_fputs(const char *str, FILE *stream) {
126     return fputs(str, stream);
127 }
128
129 int platform_fseek(FILE *stream, long offset, int origin) {
130     return fseek(stream, offset, origin);
131 }
132
133 long platform_ftell(FILE *stream) {
134     return ftell(stream);
135 }
136
137 int platform_mkdir(const char *path, int mode) {
138     /*
139      * For some reason mingw32 just doesn't have a correct mkdir impl
140      * so we handle that here.
141      */
142 #   ifdef _WIN32
143     (void)mode;
144     return mkdir(path);
145 #   else
146     return mkdir(path, mode);
147 #   endif /*!_WIN32*/
148 }
149
150 DIR *platform_opendir(const char *path) {
151     return opendir(path);
152 }
153
154 int platform_closedir(DIR *dir) {
155     return closedir(dir);
156 }
157
158 struct dirent *platform_readdir(DIR *dir) {
159     return readdir(dir);
160 }
161
162 int platform_isatty(int fd) {
163     return isatty(fd);
164 }