NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
rfc2231.h
Go to the documentation of this file.
1
24#ifndef MUTT_EMAIL_RFC2231_H
25#define MUTT_EMAIL_RFC2231_H
26
27#include <stddef.h>
28
29struct ParameterList;
30
31void rfc2231_decode_parameters(struct ParameterList *pl);
32size_t rfc2231_encode_string (struct ParameterList *head, const char *attribute, char *value);
33
34#endif /* MUTT_EMAIL_RFC2231_H */
void rfc2231_decode_parameters(struct ParameterList *pl)
Decode a Parameter list.
Definition: rfc2231.c:242
size_t rfc2231_encode_string(struct ParameterList *head, const char *attribute, char *value)
Encode a string to be suitable for an RFC2231 header.
Definition: rfc2231.c:355