18 lines
360 B
C
18 lines
360 B
C
#ifndef STRIPTEASE_H_
|
|
#define STRIPTEASE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t striptease(char *buf, size_t size, char ch);
|
|
size_t striptease_read(const char *filename, char **content);
|
|
size_t striptease_undress(const char *filename, char **content);
|
|
void striptease_dress(char **content);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* STRIPTEASE_H_ */
|