annotate th_util.h @ 746:a557d1b2a356

Move TH_ATTR_PRINTF_FMT macro definition to th_types.h and improve the preprocessor checks. Apparently newer versions (not sure since which version exactly) seem to work fine with the attribute defined. Enabling for MinGW GCC >= 12 for now, though it may have worked earlier.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Dec 2022 13:19:02 +0200
parents b415b70254fa
children db1a132c7754
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 * Generic utility-functions, macros and defaults
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 * Programmed and designed by Matti 'ccr' Hamalainen
726
29e44a58bc73 Bump copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 722
diff changeset
4 * (C) Copyright 2002-2022 Tecnic Software productions (TNSP)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 *
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 * Please read file 'COPYING' for information on license and distribution.
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 */
622
6d99150a8f89 Some more slight Doxygenisation.
Matti Hamalainen <ccr@tnsp.org>
parents: 580
diff changeset
8 /// @file
6d99150a8f89 Some more slight Doxygenisation.
Matti Hamalainen <ccr@tnsp.org>
parents: 580
diff changeset
9 /// @brief Miscellaneous utility functions, memory allocation, error codes etc.
49
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
10 #ifndef TH_UTIL_H
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
11 #define TH_UTIL_H
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12
49
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
13 #ifdef HAVE_CONFIG_H
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
14 #include "config.h"
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 #include "th_types.h"
45
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
18 #include <stdio.h>
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 #include <stdarg.h>
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 #include <stdlib.h>
75
cfb475e11b9f Add a missing include.
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
21 #include <unistd.h>
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 #ifndef HAVE_NO_ASSERT
466
bdee04d21282 Preprocessor stuff indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 462
diff changeset
23 # include <assert.h>
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25
623
893b2deeb5be Get rid of some useless includes.
Matti Hamalainen <ccr@tnsp.org>
parents: 622
diff changeset
26 #if defined(HAVE_STRING_H)
466
bdee04d21282 Preprocessor stuff indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 462
diff changeset
27 # include <string.h>
623
893b2deeb5be Get rid of some useless includes.
Matti Hamalainen <ccr@tnsp.org>
parents: 622
diff changeset
28 #elif defined(HAVE_STRINGS_H)
893b2deeb5be Get rid of some useless includes.
Matti Hamalainen <ccr@tnsp.org>
parents: 622
diff changeset
29 # include <strings.h>
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32 #ifdef HAVE_MEMORY_H
466
bdee04d21282 Preprocessor stuff indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 462
diff changeset
33 # include <memory.h>
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35
92
40568456eb5b Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 85
diff changeset
36
49
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
37 #ifdef __cplusplus
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
38 extern "C" {
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
39 #endif
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40
4
67f4a4233372 Move defaults to header file.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
41
95
d86ad68f326f Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 93
diff changeset
42 // Replacement for assert()
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43 #ifdef HAVE_NO_ASSERT
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 # ifdef NDEBUG
129
aa2d608fb3f3 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 120
diff changeset
45 # define assert(NEXPR) // stub
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46 # else
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
47 # define assert(NEXPR) do { if (!(NEXPR)) { fprintf(stderr, "[%s:%d] assert(" # NEXPR ") failed!\n", __FILE__, __LINE__); abort(); } } while (0)
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 # endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50
96
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
51
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
52 /* Error codes
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
53 */
97
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
54 enum
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
55 {
96
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
56 // General error codes
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
57 THERR_OK = 0,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
58 THERR_PROGRESS, // Status OK, but operation in progress
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
59
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
60 THERR_INTERNAL,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
61
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
62 THERR_FOPEN,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
63 THERR_FREAD,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
64 THERR_FWRITE,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
65 THERR_FSEEK,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
66 THERR_NOT_FOUND, // Resource/data not found
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
67
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
68 THERR_INVALID_DATA, // Some data was invalid
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
69 THERR_MALLOC, // Memory allocation failure
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
70 THERR_ALREADY_INIT, // Resource has already been initialized
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
71 THERR_INIT_FAIL, // General initialization failure
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
72 THERR_INVALID_ARGS,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
73
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
74 THERR_NULLPTR, // NULL pointer specified in critical argument
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
75 THERR_NOT_SUPPORTED,// Operation not supported
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
76 THERR_OUT_OF_DATA,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
77 THERR_EXTRA_DATA,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
78 THERR_BOUNDS,
163
44887a053df0 Add few error codes.
Matti Hamalainen <ccr@tnsp.org>
parents: 162
diff changeset
79
96
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
80 THERR_TIMED_OUT,
163
44887a053df0 Add few error codes.
Matti Hamalainen <ccr@tnsp.org>
parents: 162
diff changeset
81 THERR_BUSY,
44887a053df0 Add few error codes.
Matti Hamalainen <ccr@tnsp.org>
parents: 162
diff changeset
82 THERR_IO_ERROR,
96
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
83
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
84 // Network errors
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
85 THERR_AUTH_FAILED,
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
86 };
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
87
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
88 #define TH_SYSTEM_ERRORS 100000
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
89
378
5391cd557483 Add empty line.
Matti Hamalainen <ccr@tnsp.org>
parents: 269
diff changeset
90
97
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
91 /* Log levels
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
92 */
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
93 enum
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
94 {
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
95 THLOG_NONE = 0,
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
96 THLOG_ERROR,
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
97 THLOG_WARNING,
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
98 THLOG_INFO,
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
99 THLOG_DEBUG,
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
100 };
a285cdc05810 Add log level enums.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
101
96
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
102
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
103 /* Global variables
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
104 */
469
fe5b803ae449 Rename the global variable th_verbosityLevel to th_verbosity.
Matti Hamalainen <ccr@tnsp.org>
parents: 468
diff changeset
105 extern int th_verbosity;
19
bbb243eba688 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
106 extern char *th_prog_name,
60
eef9c6312b88 Change some internals.
Matti Hamalainen <ccr@tnsp.org>
parents: 57
diff changeset
107 *th_prog_desc,
19
bbb243eba688 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
108 *th_prog_version,
bbb243eba688 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
109 *th_prog_author,
bbb243eba688 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
110 *th_prog_license;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
111
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
112 /* Functions
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
113 */
60
eef9c6312b88 Change some internals.
Matti Hamalainen <ccr@tnsp.org>
parents: 57
diff changeset
114 void th_init(char *name, char *desc, char *version,
eef9c6312b88 Change some internals.
Matti Hamalainen <ccr@tnsp.org>
parents: 57
diff changeset
115 char *author, char *license);
eef9c6312b88 Change some internals.
Matti Hamalainen <ccr@tnsp.org>
parents: 57
diff changeset
116 void th_print_banner(FILE *outFile, const char *binName, const char *usage);
489
41c1d786ff08 Add th_print_version().
Matti Hamalainen <ccr@tnsp.org>
parents: 483
diff changeset
117 void th_print_version(FILE *outFile);
45
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
118
143
c878cdcfea9d Implement terminal width.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
119 int th_term_width();
c878cdcfea9d Implement terminal width.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
120 int th_term_height();
c878cdcfea9d Implement terminal width.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
121
101
a8f732601fdc Rename th_get_errno() to th_get_error(), it's more appropriate since it does
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
122 int th_get_error();
99
5819454a28a4 Add th_errno_to_error().
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
123 int th_errno_to_error(int error);
96
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
124 const char *th_error_str(int error);
3df6bec3c6b1 Add error handling stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
125
570
262411458cde Add __attribute__(__format__ ..) specifiers for functions that use printf() style format specifiers.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
126 void THERR(const char *fmt, ...)
577
70d44ba005ac Define a helper macro for __attribute__ ((__format__ (__printf__, 2, 3)))
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
127 TH_ATTR_PRINTF_FMT(1, 2);
570
262411458cde Add __attribute__(__format__ ..) specifiers for functions that use printf() style format specifiers.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
128 void THMSG(int level, const char *fmt, ...)
577
70d44ba005ac Define a helper macro for __attribute__ ((__format__ (__printf__, 2, 3)))
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
129 TH_ATTR_PRINTF_FMT(2, 3);
570
262411458cde Add __attribute__(__format__ ..) specifiers for functions that use printf() style format specifiers.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
130 void THPRINT(int level, const char *fmt, ...)
577
70d44ba005ac Define a helper macro for __attribute__ ((__format__ (__printf__, 2, 3)))
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
131 TH_ATTR_PRINTF_FMT(2, 3);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132
194
87dac812cac4 Define some argument identifiers in function prototypes and rename some arguments.
Matti Hamalainen <ccr@tnsp.org>
parents: 192
diff changeset
133 void THERR_V(const char *fmt, va_list ap);
87dac812cac4 Define some argument identifiers in function prototypes and rename some arguments.
Matti Hamalainen <ccr@tnsp.org>
parents: 192
diff changeset
134 void THMSG_V(int level, const char *fmt, va_list ap);
87dac812cac4 Define some argument identifiers in function prototypes and rename some arguments.
Matti Hamalainen <ccr@tnsp.org>
parents: 192
diff changeset
135 void THPRINT_V(int level, const char *fmt, va_list ap);
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
136
462
a90fe2c4c636 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 454
diff changeset
137 void *th_malloc(size_t len);
a90fe2c4c636 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 454
diff changeset
138 void *th_malloc0(size_t len);
a90fe2c4c636 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 454
diff changeset
139 void *th_calloc(size_t n, size_t len);
a90fe2c4c636 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 454
diff changeset
140 void *th_realloc(void *ptr, size_t len);
194
87dac812cac4 Define some argument identifiers in function prototypes and rename some arguments.
Matti Hamalainen <ccr@tnsp.org>
parents: 192
diff changeset
141 void th_free(void *ptr);
197
88986d0b56ef Rename th_free_r() to th_free_r_real() and #define a macro wrapper for
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
142 void th_free_r_real(void **ptr);
88986d0b56ef Rename th_free_r() to th_free_r_real() and #define a macro wrapper for
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
143
88986d0b56ef Rename th_free_r() to th_free_r_real() and #define a macro wrapper for
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
144 #define th_free_r(ptr) th_free_r_real((void **) ptr)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
146
727
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
147 #define th_test_bit(pdata, nbit) \
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
148 (pdata[nbit >> 3] & (1 << (nbit & 7)))
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
149
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
150 static inline void th_set_bit(uint8_t *pdata, const size_t nbit, const int value)
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
151 {
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
152 if (value)
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
153 pdata[nbit >> 3] |= (1 << (nbit & 7));
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
154 else
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
155 pdata[nbit >> 3] &= ~(1 << (nbit & 7));
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
156 }
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
157
b415b70254fa Add set_bit/test_bit helpers.
Matti Hamalainen <ccr@tnsp.org>
parents: 726
diff changeset
158
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
159 #ifdef __cplusplus
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
160 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
161 #endif
129
aa2d608fb3f3 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 120
diff changeset
162 #endif // TH_UTIL_H