mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-14 15:14:49 -04:00
create static link lib (thanks to Maximilian)
This commit is contained in:
parent
1d241cca05
commit
152c7d32af
3 changed files with 28 additions and 11 deletions
|
@ -168,7 +168,7 @@ int escape_char_process(struct zint_symbol *my_symbol, unsigned char input_strin
|
|||
return error_number;
|
||||
}
|
||||
|
||||
char itoc(int source)
|
||||
static char itoc(int source)
|
||||
{ /* Converts an integer value to its hexadecimal character */
|
||||
if ((source >= 0) && (source <= 9)) {
|
||||
return ('0' + source); }
|
||||
|
@ -176,7 +176,7 @@ char itoc(int source)
|
|||
return ('A' + (source - 10)); }
|
||||
}
|
||||
|
||||
void concat(char dest[], char source[])
|
||||
static void concat(char dest[], char source[])
|
||||
{ /* Concatinates dest[] with the contents of source[], copying /0 as well */
|
||||
unsigned int i, j, n;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue