Linux Audio

Check our new training course

Loading...
1
2
3
4
5
6
#include <time.h>

char *ctime(const time_t *t)
{
	return asctime(localtime(t));
}