blob: abf2507270952697882a6e2e652f2b40837951b9 [file] [log] [blame]
Richard Cohen2e6eed62003-09-11 22:16:33 +00001/*
2 * Useful functions for winegcc/winewrap
3 *
4 * Copyright 2000 Francois Gouget
5 * Copyright 2002 Dimitrie O. Paun
6 * Copyright 2003 Richard Cohen
7 *
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.
12 *
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.
17 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23
Dimitrie O. Paunf41c2b22004-03-02 02:23:26 +000024#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
33
34void error(const char* s, ...) DECLSPEC_NORETURN;
Richard Cohen2e6eed62003-09-11 22:16:33 +000035
Dimitrie O. Paune11108c2004-02-24 01:00:53 +000036void* xmalloc(size_t size);
37void* xrealloc(void* p, size_t size);
38char* strmake(const char* fmt, ...);
39int strendswith(const char* str, const char* end);
Richard Cohen2e6eed62003-09-11 22:16:33 +000040
41typedef struct {
42 size_t maximum;
43 size_t size;
Daniel Marmierf95be922003-10-15 03:35:54 +000044 const char** base;
Richard Cohen2e6eed62003-09-11 22:16:33 +000045} strarray;
46
Dimitrie O. Paune11108c2004-02-24 01:00:53 +000047strarray* strarray_alloc(void);
48strarray* strarray_dup(const strarray* arr);
Richard Cohen2e6eed62003-09-11 22:16:33 +000049void strarray_free(strarray* arr);
Daniel Marmierf95be922003-10-15 03:35:54 +000050void strarray_add(strarray* arr, const char* str);
Dimitrie O. Paun5f0796d2004-03-02 06:53:16 +000051void strarray_del(strarray* arr, int i);
Dimitrie O. Paunf41c2b22004-03-02 02:23:26 +000052void strarray_addall(strarray* arr, const strarray* from);
53strarray* strarray_fromstring(const char* str, const char* delim);
54char* strarray_tostring(const strarray* arr, const char* sep);
Richard Cohen2e6eed62003-09-11 22:16:33 +000055
Dimitrie O. Paune11108c2004-02-24 01:00:53 +000056typedef enum {
Dimitrie O. Paunb613ee72004-03-23 00:14:54 +000057 file_na, file_other, file_obj, file_res, file_rc,
58 file_arh, file_dll, file_so, file_def, file_spec
Dimitrie O. Paune11108c2004-02-24 01:00:53 +000059} file_type;
60
61char* get_basename(const char* file);
Dimitrie O. Paun2ab690b2004-03-03 20:11:20 +000062void create_file(const char* name, int mode, const char* fmt, ...);
Dimitrie O. Paun006ec802004-02-26 05:28:35 +000063file_type get_file_type(const char* filename);
64file_type get_lib_type(strarray* path, const char* library, char** file);
Alexandre Julliard2d52cfa2004-03-09 04:49:42 +000065void spawn(const strarray* prefix, const strarray* arr);
Richard Cohen2e6eed62003-09-11 22:16:33 +000066
67extern int verbose;