Thu, 03 Aug 2006 23:09:14 +0200
Updated locations of *.mk.
58 | 1 | /* |
2 | * libtu/misc.h | |
3 | * | |
97 | 4 | * Copyright (c) Tuomo Valkonen 1999-2005. |
58 | 5 | * |
6 | * You may distribute and modify this library under the terms of either | |
7 | * the Clarified Artistic License or the GNU LGPL, version 2.1 or later. | |
8 | */ | |
9 | ||
10 | #ifndef LIBTU_MISC_H | |
11 | #define LIBTU_MISC_H | |
12 | ||
13 | #include <stdlib.h> | |
14 | #include <stdio.h> | |
15 | #include <assert.h> | |
16 | #include "types.h" | |
17 | ||
18 | #define ALLOC(X) (X*)malloczero(sizeof(X)) | |
19 | #define ALLOC_N(X, N) (X*)malloczero(sizeof(X)*(N)) | |
20 | #define REALLOC_N(PTR, X, S, N) (X*)remalloczero(PTR, sizeof(X)*(S), sizeof(X)*(N)) | |
21 | ||
22 | #define FREE(X) do{if(X!=NULL)free(X);}while(0) | |
23 | ||
96 | 24 | #define XOR(X, Y) (((X)==0) != ((Y)==0)) |
25 | ||
58 | 26 | extern void* malloczero(size_t size); |
27 | extern void* remalloczero(void *ptr, size_t oldsize, size_t newsize); | |
28 | ||
29 | extern char* scopy(const char *p); | |
63 | 30 | extern char* scopyn(const char *p, size_t n); |
58 | 31 | extern char* scat(const char *p1, const char *p2); |
32 | extern char* scatn(const char *p1, ssize_t n1, const char *p2, ssize_t n2); | |
33 | extern char* scat3(const char *p1, const char *p2, const char *p3); | |
34 | extern void stripws(char *p); | |
64 | 35 | extern const char *libtu_strcasestr(const char *str, const char *ptn); |
58 | 36 | |
37 | extern const char* simple_basename(const char *name); | |
38 | ||
39 | /* I dislike fread and fwrite... */ | |
40 | extern bool readf(FILE *fd, void *buf, size_t n); | |
41 | extern bool writef(FILE *fd, const void *buf, size_t n); | |
42 | ||
43 | #endif /* LIBTU_MISC_H */ |