author | ali <ali@juiblex.co.uk> |
Sat Oct 26 18:47:33 2013 +0100 (2013-10-26) | |
changeset 101 | f44c530f80da |
permissions | -rw-r--r-- |
1 #ifndef TESTCASE_INPUT_H
2 #define TESTCASE_INPUT_H
4 #include <glib.h>
5 #include "testcase.h"
7 typedef struct {
8 char *name;
9 char *name_used;
10 char *contents;
11 } TestcaseInput;
13 gboolean testcase_input_create(Testcase *testcase,TestcaseInput *input,
14 GError **error);
15 gboolean testcase_input_remove(Testcase *testcase,TestcaseInput *input,
16 GError **error);
17 TestcaseInput *testcase_input_new(const char *name,const char *contents);
18 void testcase_input_free(TestcaseInput *input);
20 #endif /* TESTCASE_INPUT_H */