My slstatus configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
197 B

  1. #include <time.h>
  2. #include "util.h"
  3. const char *
  4. datetime(const char *fmt)
  5. {
  6. time_t t;
  7. t = time(NULL);
  8. if (strftime(buf, sizeof(buf), fmt, localtime(&t)) == 0)
  9. return NULL;
  10. return buf;
  11. }