push d1f5df181c120dbe494f7c89b454752c2e0dcc04
[wine/hacks.git] / tools / winegcc / utils.h
bloba48bbf038c0aca6bc7c47a7bcfbb18733a2f93f2
1 /*
2 * Useful functions for winegcc/winewrap
4 * Copyright 2000 Francois Gouget
5 * Copyright 2002 Dimitrie O. Paun
6 * Copyright 2003 Richard Cohen
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #ifndef DECLSPEC_NORETURN
25 # if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
26 # define DECLSPEC_NORETURN __declspec(noreturn)
27 # elif defined(__GNUC__)
28 # define DECLSPEC_NORETURN __attribute__((noreturn))
29 # else
30 # define DECLSPEC_NORETURN
31 # endif
32 #endif
34 void error(const char* s, ...) DECLSPEC_NORETURN;
36 void* xmalloc(size_t size);
37 void* xrealloc(void* p, size_t size);
38 char *xstrdup( const char *str );
39 char* strmake(const char* fmt, ...);
40 int strendswith(const char* str, const char* end);
42 typedef struct {
43 size_t maximum;
44 size_t size;
45 const char** base;
46 } strarray;
48 strarray* strarray_alloc(void);
49 strarray* strarray_dup(const strarray* arr);
50 void strarray_free(strarray* arr);
51 void strarray_add(strarray* arr, const char* str);
52 void strarray_del(strarray* arr, unsigned int i);
53 void strarray_addall(strarray* arr, const strarray* from);
54 strarray* strarray_fromstring(const char* str, const char* delim);
55 char* strarray_tostring(const strarray* arr, const char* sep);
57 typedef enum {
58 file_na, file_other, file_obj, file_res, file_rc,
59 file_arh, file_dll, file_so, file_def, file_spec
60 } file_type;
62 char* get_basename(const char* file);
63 void create_file(const char* name, int mode, const char* fmt, ...);
64 file_type get_file_type(const char* filename);
65 file_type get_lib_type(strarray* path, const char* library, char** file);
66 void spawn(const strarray* prefix, const strarray* arr, int ignore_errors);
68 extern int verbose;