My slstatus configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

datetime.c 346 B

12345678910111213141516171819
  1. /* See LICENSE file for copyright and license details. */
  2. #include <stdio.h>
  3. #include <time.h>
  4. #include "../util.h"
  5. const char *
  6. datetime(const char *fmt)
  7. {
  8. time_t t;
  9. t = time(NULL);
  10. if (!strftime(buf, sizeof(buf), fmt, localtime(&t))) {
  11. fprintf(stderr, "strftime: Result string exceeds buffer size\n");
  12. return NULL;
  13. }
  14. return buf;
  15. }