~ubuntu-branches/debian/sid/deborphan/sid

« back to all changes in this revision

Viewing changes to include/set.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Palfrader
  • Date: 2001-10-28 01:28:24 UTC
  • Revision ID: james.westby@ubuntu.com-20011028012824-0jvhpixo5ldm3h85
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _SET_H
 
2
#  define _SET_H
 
3
 
 
4
#define set_hold(p) ((p)->hold = 1)
 
5
#define set_install(p) ((p)->install = 1)
 
6
 
 
7
extern dep *set_dep (dep *, const char *);
 
8
extern dep *set_provides (pkg_info *, const char *, int);
 
9
extern void set_section (pkg_info *, const char *, const char *);
 
10
extern void set_priority (pkg_info *, const char *);
 
11
extern void init_pkg (pkg_info *);
 
12
extern void reinit_pkg (pkg_info *);
 
13
 
 
14
#endif