repo.or.cz
/
dockapps.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wmail: refactored MakePathName: one malloc; one snprintf instead of two memcpys.
[dockapps.git]
/
wmthemech
/
src
/
stringlist.h
blob
6523071f51c3c949cf87b10ab4d61f388466a997
1
#ifndef STRINGLIST_H
2
#define STRINGLIST_H
3
4
typedef
struct
string_list_t LIST
;
5
6
LIST
*
create_list
();
7
void
delete_list
(
LIST
*);
8
int
get_item
(
LIST
*,
unsigned int
index
);
9
int
add_item
(
LIST
*,
unsigned int
);
10
int
add_list
(
LIST
*,
LIST
*);
11
12
#endif