diff options
author | jcid <devnull@localhost> | 2007-10-07 00:36:34 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-07 00:36:34 +0200 |
commit | 93715c46a99c96d6c866968312691ec9ab0f6a03 (patch) | |
tree | 573f19ec6aa740844f53a7c0eb7114f04096bf64 /src/misc.h |
Initial revision
Diffstat (limited to 'src/misc.h')
-rw-r--r-- | src/misc.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/misc.h b/src/misc.h new file mode 100644 index 00000000..71a00b68 --- /dev/null +++ b/src/misc.h @@ -0,0 +1,25 @@ +#ifndef __DILLO_MISC_H__ +#define __DILLO_MISC_H__ + +#include <stddef.h> /* for size_t */ + + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + +char *a_Misc_escape_chars(const char *str, char *esc_set); +char *a_Misc_expand_tabs(const char *str); +int a_Misc_get_content_type_from_data(void *Data, size_t Size,const char **PT); +int a_Misc_content_type_check(const char *EntryType, const char *DetectedType); +int a_Misc_parse_geometry(char *geom, int *x, int *y, int *w, int *h); +char *a_Misc_encode_base64(const char *in); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __DILLO_MISC_H__ */ + |