mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-23 16:08:43 +00:00
11 lines
195 B
C
11 lines
195 B
C
#ifndef LEMON_STRING_H
|
|
#define LEMON_STRING_H
|
|
|
|
int strhash(char *x);
|
|
|
|
char *Strsafe(char*);
|
|
void Strsafe_init();
|
|
int Strsafe_insert(char *);
|
|
char *Strsafe_find(char *);
|
|
|
|
#endif // LEMON_STRING_H
|