1 | /*
|
---|
2 | * Utility routines' prototypes etc.
|
---|
3 | *
|
---|
4 | * Copyright 1998 Bertho A. Stultiens (BS)
|
---|
5 | *
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef __WRC_UTILS_H
|
---|
9 | #define __WRC_UTILS_H
|
---|
10 |
|
---|
11 | #ifndef __WRC_WRCTYPES_H
|
---|
12 | #include "wrctypes.h"
|
---|
13 | #endif
|
---|
14 |
|
---|
15 | #include <stddef.h> /* size_t */
|
---|
16 |
|
---|
17 | void *xmalloc(size_t);
|
---|
18 | void *xrealloc(void *, size_t);
|
---|
19 | char *xstrdup(const char *str);
|
---|
20 |
|
---|
21 | int pperror(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
22 | int ppwarning(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
23 | int yyerror(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
24 | int yywarning(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
25 | void internal_error(const char *file, int line, const char *s, ...) __attribute__((format (printf, 3, 4)));
|
---|
26 | void error(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
27 | void warning(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
28 | void chat(const char *s, ...) __attribute__((format (printf, 1, 2)));
|
---|
29 |
|
---|
30 | char *dup_basename(const char *name, const char *ext);
|
---|
31 | char *dupwstr2cstr(const short *str);
|
---|
32 | short *dupcstr2wstr(const char *str);
|
---|
33 | int compare_name_id(name_id_t *n1, name_id_t *n2);
|
---|
34 | string_t *convert_string(const string_t *str, enum str_e type);
|
---|
35 | void set_language(unsigned short lang, unsigned short sublang);
|
---|
36 |
|
---|
37 | #endif
|
---|