insomnia(불면증) - Craig David
I never thought that I'd fall in love, love, love, love But it grew from a simple crush, crush, crush, crush Being without you girl, I was all messed up, up, up, up When you walked out, said that you'd had enough-nough-nough-nough Been a fool, girl I know Didn't expect this is how things would go Maybe in time, you'll change your mind Now looking back I wish I could rewind Because I can't sleep ..
2009. 8. 4.
va_list 의 사용과 vsprintf 이용 예
#include // for use va_list// global variable char dbgStrings[1024];// sample function void Mydebug(const char *funcName, int line, char *format, ...) { char tempStr[1024] ={0,}; memset(dbgStrings, 0x0, sizeof(dbgStrings)); /* use for vsprintf */ va_list ap; va_start( ap, format ); vsprintf(tempStr, format, ap); va_end(ap); /* add to function name and line number */ sprintf(dbgStrings, "%s() - l..
2009. 7. 19.