Build system for building on limited/legacy compilers/platforms.
More...
|
#define | UNIFILE_STATE_NONE 0 |
|
#define | UNIFILE_STATE_PARSE 1 |
|
#define | str_concat_char(str, str_sz_p, str_max, c, retval) |
|
|
int | str_in_array (const char *str, int str_sz, char *array[]) |
|
int | str_replace (char *str, int str_sz_max, const char *str_in, const char *substr_replace, const char *substr_replacement, int *chars_advanced_tgt, int *chars_advanced_in) |
|
int | str_concat (char *str, int *str_sz, int str_sz_max, const char *str_in, const char *substr_target, const char *substr_replacement) |
| Concatenate str_in to str, replacing token substr_target with substr_replacement as needed.
|
|
Build system for building on limited/legacy compilers/platforms.
Unimake is designed to facilitate building projects using unilayer for portability across legacy platforms. It is somewhat less flexible than other build systems by design.
Unimake incorporates knowledge and quirks of old/esoteric compilers to build projects for platforms typically neglected by modern build systems.
◆ str_concat_char
#define str_concat_char |
( |
|
str, |
|
|
|
str_sz_p, |
|
|
|
str_max, |
|
|
|
c, |
|
|
|
retval |
|
) |
| |
Value: if( str_max > *(str_sz_p) + 1 ) { \
str[*(str_sz_p)] = c; \
(*(str_sz_p))++; \
str[*(str_sz_p)] = '\0'; \
} else { \
error_printf( "line buffer exceeded" ); \
retval = UNIMAKE_ERROR_STRING_TOO_LONG; \
goto cleanup; \
}
◆ str_in_array()
int str_in_array |
( |
const char * |
str, |
|
|
int |
str_sz, |
|
|
char * |
array[] |
|
) |
| |
- Returns
- Index of string in given array if it is found, or -1 otherwise.
◆ str_replace()
int str_replace |
( |
char * |
str, |
|
|
int |
str_sz_max, |
|
|
const char * |
str_in, |
|
|
const char * |
substr_replace, |
|
|
const char * |
substr_replacement, |
|
|
int * |
chars_advanced_tgt, |
|
|
int * |
chars_advanced_in |
|
) |
| |
- Returns
- 0 if replacement string not found or if it is found and replaced. UNIMAKE_ERROR_STRING_TOO_LONG if replacement is attempted but fails due to insufficient room in target buffer.