utils

tiny programs I use on my system
Download | Log | Files | Refs | README | LICENSE

sb-time.c (206B)


      1 #include <stdio.h>
      2 #include <time.h>
      3 
      4 int main() {
      5   time_t t = time(NULL);
      6   char time_str[10];
      7 
      8   strftime(time_str, sizeof(time_str), "%I:%M%p", localtime(&t));
      9   printf("%s\n", time_str);
     10   return 0;
     11 }