/* * 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 */