날짜,pthread,도메인
/*strftime, strptime.get_ip_cls*/#include int main(){ char buf[200] = ""; time_t now = 0; struct tm *t = NULL; //strftime. now = time(NULL); t = localtime(&now); strftime(buf, 20, "%Y/%m/%d %H:%M:%S", t); puts(buf); //strptime. strptime(buf, "%Y/%m/%d %H:%M:%S", &t); sleep(3); strftime(buf, 20, "%Y/%m/%d %H:%M:%S", t); puts(buf); return 0; } /*날짜 관련 함수 예제*/ #include "/home/jinyedge/lib/c/edgelib..