Files
klisp/util.h
Sam Stevens f2c8dc167c join can now operate on strings.
added vstrcat, but never used.
2014-06-21 22:48:47 +01:00

24 lines
256 B
C

/*
* File: util.h
* Author: sam
*
* Created on 18 May 2014, 21:29
*/
#ifndef UTIL_H
#define UTIL_H
#ifdef __cplusplus
extern "C" {
#endif
char* strdup(const char* s);
char* vstrcat(int n, ...);
#ifdef __cplusplus
}
#endif
#endif /* UTIL_H */