summaryrefslogtreecommitdiff
path: root/c/include/subunit
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2006-04-15 12:37:24 +1000
committerRobert Collins <robertc@robertcollins.net>2006-04-15 12:37:24 +1000
commitff4fc243402f5b1da14aa20c8208ff882b43a6f7 (patch)
treeee2add992b76c5c1ce5ed1d66ee961d649aebe11 /c/include/subunit
parent66df7bbeb79f4a278ac1cc2cba1cd12efe353fda (diff)
downloadsubunit-git-ff4fc243402f5b1da14aa20c8208ff882b43a6f7.tar.gz
Start C language bindings.
Diffstat (limited to 'c/include/subunit')
-rw-r--r--c/include/subunit/child.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/c/include/subunit/child.h b/c/include/subunit/child.h
new file mode 100644
index 0000000..e850c95
--- /dev/null
+++ b/c/include/subunit/child.h
@@ -0,0 +1,28 @@
+/**
+ *
+ * subunit C bindings.
+ * Copyright (C) 2006 Robert Collins <robertc@robertcollins.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ **/
+
+
+/**
+ * subunit_test_start:
+ *
+ * Report that a test is starting.
+ * @name: test case name
+ */
+extern void subunit_test_start(char const * const name);