summaryrefslogtreecommitdiffstats
path: root/src/rfc2388.h
diff options
context:
space:
mode:
authorNathan Angelacos <nangel@alpinelinux.org>2008-12-17 01:22:51 +0000
committerNathan Angelacos <nangel@alpinelinux.org>2008-12-17 01:22:51 +0000
commitb6de69e02e1a4b2ffebc93cc609bbd000949591d (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/rfc2388.h
parent298fa88270cc3299b661b86ab8ed94b2cc4b21b6 (diff)
downloadhaserl-b6de69e02e1a4b2ffebc93cc609bbd000949591d.tar.bz2
haserl-b6de69e02e1a4b2ffebc93cc609bbd000949591d.tar.xz
need git
Diffstat (limited to 'src/rfc2388.h')
-rw-r--r--src/rfc2388.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/rfc2388.h b/src/rfc2388.h
deleted file mode 100644
index acad1ac..0000000
--- a/src/rfc2388.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef _RFC2388_H
-#define _RFC2388_H 1
-
-typedef struct
-{
- char *name; /* the variable name */
- char *filename; /* the client-specified filename */
- char *type; /* the mime-type */
- char *tempname; /* the tempfilename */
- buffer_t value; /* the value of the variable */
- int fh; /* the output file handle */
- } mime_var_t;
-
-
-/* rfc2388.c */
-void empty_stdin(void);
-void mime_var_init(mime_var_t *obj);
-void mime_var_destroy(mime_var_t *obj);
-char *mime_substr(char *start, int len);
-void mime_tag_add(mime_var_t *obj, char *str);
-void mime_var_putenv(list_t *env, mime_var_t *obj);
-void mime_exec(mime_var_t *obj, char *fifo);
-void mime_var_open_target(mime_var_t *obj);
-void mime_var_writer(mime_var_t *obj, char *str, int len);
-int rfc2388_handler(list_t *env);
-
-
-#endif /* _RFC2388_H */