repo.or.cz
/
rlserver.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated docs
[rlserver.git]
/
util.h
blob
c45932a3423323a47b600a13c7d995dcd357b85f
1
#ifndef __RLS_UTIL__
2
#define __RLS_UTIL__
3
4
void
str_replace
(
char
*
buf
,
int
size
,
const char
*
str
,
const char
*
what
,
const char
*
to
);
5
6
/*
7
* create directory (at multiple levels, if needed)
8
* NB! assume dir[0] != 0
9
*/
10
void
make_dir
(
const char
*
dir
);
11
12
#endif
13