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