blob: 9fd535a7d3a94c5d0e32e462090945433dfe8be7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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
|