~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to src/rfc822.h

  • Committer: mvo
  • Date: 2005-01-19 11:21:15 UTC
  • Revision ID: gustavo@niemeyer.net-20050119112115-4481f2feff7bb8e3
* added basic "interactive-update-hooks" support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _RFC822_H_
 
2
#define _RFC822_H_
 
3
 
 
4
struct rfc822_header {
 
5
    char *header;
 
6
    char *value;
 
7
    struct rfc822_header *next;
 
8
};
 
9
 
 
10
struct rfc822_header *rfc822_parse_stanza(FILE *file);
 
11
char *rfc822_header_lookup(struct rfc822_header *list, const char* key);
 
12
 
 
13
void rfc822_header_free_all(struct rfc822_header *list);
 
14
 
 
15
#endif