repo.or.cz
/
svn-fe.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix node-prop-change handling bug.
[svn-fe.git]
/
string_pool.h
blob
2099a114c946610f6bfafa12311476d1001f5404
1
#ifndef STRING_POOL_H_
2
#define STRING_POOL_H_
3
4
#include <stdint.h>
5
#include <stdio.h>
6
7
uint32_t
pool_intern
(
char
*
key
);
8
9
uint32_t
pool_tok_r
(
char
*
str
,
const char
*
delim
,
char
**
saveptr
);
10
11
void
pool_print_seq
(
uint32_t
len
,
uint32_t
*
seq
,
char
delim
,
FILE
*
stream
);
12
13
#endif