]> pd.if.org Git - pdclib/blobdiff - functions/string/strspn.c
Added dummy test drivers to each *.c file, and target 'test' to Makefile.
[pdclib] / functions / string / strspn.c
index d58ec9e46c996cf0d709d3207a00a4d2b2bfcce8..b8e703d1f09411a7e4d82678009cdfd3f5417e28 100644 (file)
@@ -33,3 +33,12 @@ size_t strspn( const char * s1, const char * s2 )
     }
     return len;
 }
+
+#warning Test driver missing.
+
+#ifdef TEST
+int main()
+{
+    return 0;
+}
+#endif