blob: 617c3f83adf7eeb76f4b056a6b709a377e3b2468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MAGI_INCLUDED_MULTIPART
#define MAGI_INCLUDED_MULTIPART
#include "request.h"
void magi_parse_multipart(magi_request *request,
char *boundary,
int (*next)(void *userdata),
void *next_userdata);
#endif
|