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