shithub: fnt

ref: afe9aa1eb04787b6407952d5696a6bfeb9f65f20
dir: /unix/otfsys.h/

View raw version
#pragma once
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <inttypes.h>

#define nil NULL
#define USED(x) (void)(x)
#define nelem(a) (int)(sizeof(a)/sizeof((a)[0]))

char *fmttime(long long v);
void werrstr(char *fmt, ...);