4 * Copyright 1998 Bertho A. Stultiens
5 * Copyright 2002 Ove Kaaven
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
37 static const int want_near_indication
= 0;
39 static void make_print(char *str
)
49 static void generic_msg(const char *s
, const char *t
, const char *n
, va_list ap
)
51 fprintf(stderr
, "%s:%d: %s: ", input_name
? input_name
: "stdin", line_number
, t
);
52 vfprintf(stderr
, s
, ap
);
54 if (want_near_indication
)
61 fprintf(stderr
, " near '%s'", cpy
);
66 fprintf(stderr
, "\n");
70 int parser_error(const char *s
, ...)
74 generic_msg(s
, "Error", parser_text
, ap
);
80 int parser_warning(const char *s
, ...)
84 generic_msg(s
, "Warning", parser_text
, ap
);
89 void internal_error(const char *file
, int line
, const char *s
, ...)
93 fprintf(stderr
, "Internal error (please report) %s %d: ", file
, line
);
94 vfprintf(stderr
, s
, ap
);
99 void error(const char *s
, ...)
103 fprintf(stderr
, "error: ");
104 vfprintf(stderr
, s
, ap
);
109 void warning(const char *s
, ...)
113 fprintf(stderr
, "warning: ");
114 vfprintf(stderr
, s
, ap
);
118 void chat(const char *s
, ...)
120 if(debuglevel
& DEBUGLEVEL_CHAT
)
124 fprintf(stderr
, "chat: ");
125 vfprintf(stderr
, s
, ap
);
130 char *dup_basename(const char *name
, const char *ext
)
133 int extlen
= strlen(ext
);
140 slash
= strrchr(name
, '/');
144 namelen
= strlen(name
);
146 /* +4 for later extension and +1 for '\0' */
147 base
= xmalloc(namelen
+4 +1);
149 if(!strcasecmp(name
+ namelen
-extlen
, ext
))
151 base
[namelen
- extlen
] = '\0';
156 void *xmalloc(size_t size
)
164 error("Virtual memory exhausted.\n");
166 memset(res
, 0x55, size
);
171 void *xrealloc(void *p
, size_t size
)
176 res
= realloc(p
, size
);
179 error("Virtual memory exhausted.\n");
184 char *xstrdup(const char *str
)
189 s
= xmalloc(strlen(str
)+1);
190 return strcpy(s
, str
);