File: termdecide.h

package info (click to toggle)
reprepro 5.4.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,700 kB
  • sloc: ansic: 53,795; python: 1,625; sh: 1,417; makefile: 120
file content (19 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef REPREPRO_TERMDECIDE_H
#define REPREPRO_TERMDECIDE_H

#ifndef REPREPRO_TERMS_H
#include "terms.h"
#endif
#ifndef REPREPRO_TARGET_H
#include "target.h"
#endif
#ifndef REPREPRO_PACKAGE_H
#include "package.h"
#endif

retvalue term_compilefortargetdecision(/*@out@*/term **, const char *);
retvalue term_decidepackage(const term *, struct package *, struct target *);



#endif