mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-29 03:50:27 +00:00
38 lines
557 B
C
38 lines
557 B
C
|
#include "hash.h"
|
||
|
#include "uniquestring.h"
|
||
|
#include "common.h"
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
|
||
|
static SymbolTable *sym = NULL;
|
||
|
|
||
|
void
|
||
|
init_unique_string ()
|
||
|
{
|
||
|
if (sym == NULL)
|
||
|
sym = make_symbol_table ();
|
||
|
}
|
||
|
|
||
|
|
||
|
const char *
|
||
|
unique_string (const char *s)
|
||
|
{
|
||
|
SymbolInfo si;
|
||
|
const char *p;
|
||
|
|
||
|
if (lookup_symbol (sym, s, &si, &p) != HASH_NOERR)
|
||
|
{
|
||
|
char *newp;
|
||
|
|
||
|
newp = malloc (strlen (s) + 1);
|
||
|
assert(newp);
|
||
|
strcpy (newp, s);
|
||
|
insert_symbol (sym, newp, si);
|
||
|
p = newp;
|
||
|
}
|
||
|
|
||
|
return p;
|
||
|
}
|