Files
libkeke/libkeke_symbol.c
T
2026-08-18 08:12:49 -05:00

9 lines
154 B
C

#include <stdint.h>
#include "libkeke_symbol.h"
static _Atomic KekeSymbol iota = KEKE_NULL_SYMBOL + 1;
KekeSymbol keke_new_symbol() {
return iota++;
}