aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-09-20 23:57:19 +0200
committerFederico Angelilli <code@fedang.net>2024-09-20 23:57:19 +0200
commitae59c294bfd4b73f6e751a3103c2ee7501068492 (patch)
treeefbcded195dfd24f9534f69f47f728ecca34b762 /src/util.h
parentbc70dead7fb518f073fecb21a04fa374e9ad6dd0 (diff)
Start parsing effects
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index 0e28006..30acf34 100644
--- a/src/util.h
+++ b/src/util.h
@@ -29,9 +29,9 @@ char *color_to_string(color_t *color);
void color_print(FILE *stream, color_t *color);
-struct timespec timespec_from_ms(long ms);
+const struct timespec timespec_from_ms(long ms);
-long timespec_to_ms(struct timespec ts);
+const long timespec_to_ms(struct timespec ts);
struct timespec timespec_diff(struct timespec a, struct timespec b);