mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
10 lines
332 B
C
10 lines
332 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <uchar.h>
|
|
#include <time.h>
|
|
|
|
bool isword(char32_t wc, bool spaces_only, const char32_t *delimiters);
|
|
|
|
void timespec_add(const struct timespec *a, const struct timespec *b, struct timespec *res);
|
|
void timespec_sub(const struct timespec *a, const struct timespec *b, struct timespec *res);
|