micro-utils/libmu/duration.c

45 lines
562 B
C
Raw Normal View History

2024-07-09 19:33:45 +00:00
#include <stdlib.h>
2024-07-01 10:23:00 +00:00
#include <string.h>
2024-07-09 19:33:45 +00:00
unsigned long long parse_uint(const char *str) {
2024-07-01 10:23:00 +00:00
char *p = NULL;
unsigned long long res = strtoull(str, &p, 0);
/* Parse suffix */
if (*p) {
switch (p[0]) {
case 'm':
res *= 60;
break;
case 'h':
res *= 3600;
break;
case 'd':
res *= 86400;
break;
case 's':
default:
break;
}
}
return res;
}
2024-07-09 19:33:45 +00:00
unsigned long long mu_parse_duration(const char *arg) {
2024-07-01 10:23:00 +00:00
if (strchr(arg, '.')) {
/* TODO */
}
else {
/* Sec */
return parse_uint(arg) * 1000000;
}
return 0;
}