Files
libkeke/libkeke_symbol.c
T
2026-08-17 09:51:19 -04:00

9 lines
146 B
C

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