include/libtu/misc.h

Wed, 19 Apr 2000 22:17:57 +0200

author
tuomov
date
Wed, 19 Apr 2000 22:17:57 +0200
changeset 6
f73065173121
parent 5
f878a9ffa3e0
child 8
c1994196683f
permissions
-rw-r--r--

trunk: changeset 9
Added rules.mk system.mk

5
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
1 /*
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
2 * libtu/misc.h
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
3 *
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
4 * Copyright (c) Tuomo Valkonen 1999-2000.
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
5 *
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
6 * This file is distributed under the terms of the "Artistic License".
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
7 * See the included file LICENSE for details.
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
8 */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
9
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
10 #ifndef __LIBTU_MISC_H
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
11 #define __LIBTU_MISC_H
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
12
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
13 #include <stdlib.h>
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
14 #include <stdio.h>
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
15 #include <assert.h>
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
16 #include "types.h"
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
17
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
18 #define TR(X) X
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
19 #define DUMMY_TR(X) X
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
20
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
21 #define ALLOC(X) (X*)malloczero(sizeof(X))
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
22 #define ALLOC_N(X, N) (X*)malloczero(sizeof(X)*(N))
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
23 #define REALLOC_N(PTR, X, S, N) (X*)remalloczero(PTR, sizeof(X)*(S), sizeof(X)*(N))
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
24
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
25 #define FREE(X) ({if(X!=NULL) free(X);})
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
26
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
27 extern void* malloczero(size_t size);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
28 extern void* remalloczero(void *ptr, size_t oldsize, size_t newsize);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
29
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
30 extern char* scopy(const char *p);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
31 extern char* scat(const char *p1, const char *p2);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
32 extern char* scatn(const char *p1, ssize_t n1, const char *p2, ssize_t n2);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
33 extern char* scat3(const char *p1, const char *p2, const char *p3);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
34
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
35 extern const char* simple_basename(const char *name);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
36
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
37 /* I dislike fread and fwrite... */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
38 extern bool readf(FILE *fd, void *buf, size_t n);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
39 extern bool writef(FILE *fd, const void *buf, size_t n);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
40
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
41 #endif /* __LIBTU_MISC_H */

mercurial