blob: 78be3848eaa21a49969a65b8e55da93eb863f630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Copyright (c) 2007, Novell Inc.
*
* This program is licensed under the BSD license, read LICENSE.BSD
* for further information
*/
/*
* repo_helix.h
*
*/
#ifndef SATSOLVER_REPO_HELIX_H
#define SATSOLVER_REPO_HELIX_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include "pool.h"
#include "repo.h"
extern void repo_add_helix(Repo *repo, FILE *fp, int flags);
#ifdef __cplusplus
}
#endif
#endif /* SATSOLVER_REPO_HELIX_H */
|