test/harness/testcaseinput.h
author ali <ali@juiblex.co.uk>
Sun Feb 19 09:56:28 2012 +0000 (2012-02-19)
changeset 29 08b03c341e61
permissions -rw-r--r--
Fix bug caused by late edit.
     1 #ifndef TESTCASE_INPUT_H
     2 #define TESTCASE_INPUT_H
     3 
     4 #include <glib.h>
     5 #include "testcase.h"
     6 
     7 typedef struct {
     8     char *name;
     9     char *name_used;
    10     char *contents;
    11 } TestcaseInput;
    12 
    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);
    19 
    20 #endif	/* TESTCASE_INPUT_H */