Subversion Repositories RepoView

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
41 nishi 1
/* $Id: rv_multipart.h 41 2024-08-22 04:26:35Z nishi $ */
2
 
3
#ifndef __RV_MULTIPART_H__
4
#define __RV_MULTIPART_H__
5
 
6
struct multipart_entry {
7
	unsigned char* data;
8
	char* name;
9
	unsigned long long length;
10
};
11
 
12
void rv_parse_multipart(unsigned char* buffer, char* boundary, unsigned long long length);
13
struct multipart_entry* rv_get_multipart(const char* name);
14
void rv_free_multipart(void);
15
 
16
#endif