r1595: Updated C test functions
[uffi.git] / examples / c-test-lib.c
diff --git a/examples/c-test-lib.c b/examples/c-test-lib.c
deleted file mode 100644 (file)
index 2a6f10c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <ctype.h>
-
-int
-cstring-count-upper (char* psz)
-{
-  int count = 0;
-  while (*psz) {
-    if (isupper (*psz))
-      ++count;
-    ++psz;
-  }
-}
-
-void
-cstring-to-upper (char* psz)
-{
-  while (*psz) {
-    *psz = toupper (*psz);
-    ++psz;
-  }
-}
-
-
-