diff options
Diffstat (limited to 'ext/testcase.h')
-rw-r--r-- | ext/testcase.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/testcase.h b/ext/testcase.h new file mode 100644 index 0000000..048f48e --- /dev/null +++ b/ext/testcase.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2012, Novell Inc. + * + * This program is licensed under the BSD license, read LICENSE.BSD + * for further information + */ + +#include "pool.h" +#include "repo.h" + +extern Id testcase_str2dep(Pool *pool, char *s); +extern const char *testcase_solvid2str(Pool *pool, Id p); +extern Repo *testcase_str2repo(Pool *pool, const char *str); +extern Id testcase_str2solvid(Pool *pool, const char *str); +extern const char *testcase_job2str(Pool *pool, Id how, Id what); +extern Id testcase_str2job(Pool *pool, const char *str, Id *whatp); +extern int testcase_write_susetags(Repo *repo, FILE *fp); + |