NeoMutt  2023-05-17-33-gce4425
Teaching an old dog new tricks
DOXYGEN
rfc2231.h
Go to the documentation of this file.
1
23#ifndef MUTT_EMAIL_RFC2231_H
24#define MUTT_EMAIL_RFC2231_H
25
26#include <stddef.h>
27
28struct ParameterList;
29
30void rfc2231_decode_parameters(struct ParameterList *pl);
31size_t rfc2231_encode_string (struct ParameterList *head, const char *attribute, char *value);
32
33#endif /* MUTT_EMAIL_RFC2231_H */
void rfc2231_decode_parameters(struct ParameterList *pl)
Decode a Parameter list.
Definition: rfc2231.c:238
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:351