r1593: started work on C testing library
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 20 Mar 2002 04:56:52 +0000 (04:56 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 20 Mar 2002 04:56:52 +0000 (04:56 +0000)
examples/Makefile [new file with mode: 0644]
examples/c-test-lib.c [new file with mode: 0644]
examples/compress.cl
examples/strtol.cl
tests/Makefile [new file with mode: 0644]
tests/c-test-lib.c [new file with mode: 0644]
tests/compress.cl
tests/strtol.cl

diff --git a/examples/Makefile b/examples/Makefile
new file mode 100644 (file)
index 0000000..4edb1cb
--- /dev/null
@@ -0,0 +1,42 @@
+# FILE IDENTIFICATION
+# 
+#  Name:         Makefile
+#  Purpose:      Makefile for UFFI examples
+#  Programer:    Kevin M. Rosenberg
+#  Date Started: Mar 2002
+#
+#  CVS Id:   $Id: Makefile,v 1.1 2002/03/20 04:56:52 kevin Exp $
+#
+# This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
+#
+# UFFI users are granted the rights to distribute and use this software
+# as governed by the terms of the Lisp Lesser GNU Public License
+# (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+
+# These variables are correct for GCC
+# you'll need to modify these for other compilers
+CC=gcc
+SHARED_CC_OPT=-fpic
+SHARED_LD_OPT=-shared
+
+# If you are using Solaris, these are the correct values
+# for creating a shared library
+#CC=cc
+#SHARED_CC_OPT=-KPIC
+#SHARED_LD_OPT=-G
+
+# Nothing to configure beyond this point
+
+all: lib 
+
+lib: c-test-lib.so
+
+c-test-lib.so: c-test-lib.c 
+       ${CC} ${SHARED_CC_OPT} -c c-test-lib.c -o c-test-lib.o
+       ld ${SHARED_LD_OPT} c-test-lib.o -o c-test-lib.so
+
+clean:
+       rm -f *.o *.so 
+
+realclean:
+       rm -f *.o *.so *~
diff --git a/examples/c-test-lib.c b/examples/c-test-lib.c
new file mode 100644 (file)
index 0000000..2a6f10c
--- /dev/null
@@ -0,0 +1,24 @@
+#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;
+  }
+}
+
+
+    
index c45029de8637213045c76c69fd21418812c03aed..05fa6ffeddc5cbed25747d960ceda80f104e7d37 100644 (file)
@@ -1,4 +1,4 @@
-;;;; -*- Mode: ANSI-Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: compress.cl,v 1.8 2002/03/17 17:33:30 kevin Exp $
+;;;; $Id: compress.cl,v 1.9 2002/03/20 04:56:52 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
index 8beeddf4c67819308787d9fcd329fe64621a5469..eefee46e261175b7654c506ce7fc9004adb6a519 100644 (file)
@@ -1,4 +1,4 @@
-;;;; -*- Mode: ANSI-Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: strtol.cl,v 1.10 2002/03/18 22:47:57 kevin Exp $
+;;;; $Id: strtol.cl,v 1.11 2002/03/20 04:56:52 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644 (file)
index 0000000..4edb1cb
--- /dev/null
@@ -0,0 +1,42 @@
+# FILE IDENTIFICATION
+# 
+#  Name:         Makefile
+#  Purpose:      Makefile for UFFI examples
+#  Programer:    Kevin M. Rosenberg
+#  Date Started: Mar 2002
+#
+#  CVS Id:   $Id: Makefile,v 1.1 2002/03/20 04:56:52 kevin Exp $
+#
+# This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
+#
+# UFFI users are granted the rights to distribute and use this software
+# as governed by the terms of the Lisp Lesser GNU Public License
+# (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+
+# These variables are correct for GCC
+# you'll need to modify these for other compilers
+CC=gcc
+SHARED_CC_OPT=-fpic
+SHARED_LD_OPT=-shared
+
+# If you are using Solaris, these are the correct values
+# for creating a shared library
+#CC=cc
+#SHARED_CC_OPT=-KPIC
+#SHARED_LD_OPT=-G
+
+# Nothing to configure beyond this point
+
+all: lib 
+
+lib: c-test-lib.so
+
+c-test-lib.so: c-test-lib.c 
+       ${CC} ${SHARED_CC_OPT} -c c-test-lib.c -o c-test-lib.o
+       ld ${SHARED_LD_OPT} c-test-lib.o -o c-test-lib.so
+
+clean:
+       rm -f *.o *.so 
+
+realclean:
+       rm -f *.o *.so *~
diff --git a/tests/c-test-lib.c b/tests/c-test-lib.c
new file mode 100644 (file)
index 0000000..2a6f10c
--- /dev/null
@@ -0,0 +1,24 @@
+#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;
+  }
+}
+
+
+    
index c45029de8637213045c76c69fd21418812c03aed..05fa6ffeddc5cbed25747d960ceda80f104e7d37 100644 (file)
@@ -1,4 +1,4 @@
-;;;; -*- Mode: ANSI-Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: compress.cl,v 1.8 2002/03/17 17:33:30 kevin Exp $
+;;;; $Id: compress.cl,v 1.9 2002/03/20 04:56:52 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
index 8beeddf4c67819308787d9fcd329fe64621a5469..eefee46e261175b7654c506ce7fc9004adb6a519 100644 (file)
@@ -1,4 +1,4 @@
-;;;; -*- Mode: ANSI-Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: strtol.cl,v 1.10 2002/03/18 22:47:57 kevin Exp $
+;;;; $Id: strtol.cl,v 1.11 2002/03/20 04:56:52 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;