git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added services moc.
[stg.git]
/
projects
/
rlm_stg
/
stgpair.h
1
#ifndef __STG_STGPAIR_H__
2
#define __STG_STGPAIR_H__
3
4
#define STGPAIR_KEYLENGTH 64
5
#define STGPAIR_VALUELENGTH 256
6
7
typedef struct STG_PAIR {
8
char key[STGPAIR_KEYLENGTH];
9
char value[STGPAIR_VALUELENGTH];
10
} STG_PAIR;
11
12
#endif