diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-04-24 17:54:01 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-04-24 17:54:01 +0200 |
commit | 9e49fe912460f7dc94938a39616012aa774a85ce (patch) | |
tree | 8efb230aa0db47ca50342d82a9654040b36b74d2 /strcon.h | |
parent | f3f329bd7ad540e0ae112106ad2946abff035230 (diff) |
Add code
Diffstat (limited to 'strcon.h')
-rw-r--r-- | strcon.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/strcon.h b/strcon.h new file mode 100644 index 0000000..9fd535a --- /dev/null +++ b/strcon.h @@ -0,0 +1,11 @@ +#ifndef _STRCON_H_ +#define _STRCON_H_ + +/* + * The functions below should only be called with string arguments. + * The last argument has to be NULL. + */ +char *strcon(char *dest, ...); +char *astrcon(const char *src, ...); + +#endif |