ttimeutil.h - stopwatch - simple timer for console or x root window
 (HTM) git clone git://src.adamsgaard.dk/stopwatch
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       ttimeutil.h (311B)
       ---
            1 #ifndef __OpenBSD__
            2 #include <getopt.h>
            3 #define LINE_MAX 2048
            4 #endif
            5 
            6 void format_time(char *out, size_t outsiz, time_t t_elapsed, char *prefix, char *postfix);
            7 
            8 #undef strlcpy
            9 size_t strlcpy(char *, const char *, size_t);
           10 
           11 #undef strtonum
           12 long long strtonum(const char *, long long, long long, const char **);