X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Fc-test-lib.c;fp=examples%2Fc-test-lib.c;h=0000000000000000000000000000000000000000;hb=0b1b0d4ad19bb43dd082376b26acbb784b28b0e1;hp=2a6f10cd34c06329d97a3023d39a35a20c2be21e;hpb=54de0ff398a996c976d053d5b56b46f0a44d3e23;p=uffi.git diff --git a/examples/c-test-lib.c b/examples/c-test-lib.c deleted file mode 100644 index 2a6f10c..0000000 --- a/examples/c-test-lib.c +++ /dev/null @@ -1,24 +0,0 @@ -#include - -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; - } -} - - -