~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/lib-mail/rfc2231-parser.h

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
   them as a NULL-terminated [key, value] array. RFC 2231-style continuations
6
6
   are merged to a single key. Returns -1 if some of the input was invalid
7
7
   (but valid key/value pairs are still returned), 0 if everything looked ok. */
8
 
int rfc2231_parse(struct rfc822_parser_context *ctx,
9
 
                  const char *const **result_r);
 
8
int ATTR_NOWARN_UNUSED_RESULT
 
9
rfc2231_parse(struct rfc822_parser_context *ctx,
 
10
              const char *const **result_r);
10
11
 
11
12
#endif