OSDN Git Service

unite wordarray_t.
authorornse01 <ornse01@users.sourceforge.jp>
Mon, 13 May 2013 15:49:07 +0000 (15:49 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Mon, 13 May 2013 15:49:07 +0000 (15:49 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanf/trunk@567 20a0b8eb-f62a-4a12-8fe1-b598822500fb

src/Makefile.lib
src/Makefile.test
src/test_main.c

index d369f4a..39b8317 100644 (file)
@@ -57,7 +57,8 @@ SRC_PARSE =   tokenchecker.c \
 SRC_COLL =     idtocb.c \
                arraybase.c \
                treebase.c \
-               bytearray.c
+               bytearray.c \
+               wordarray.c
 
 SRC_CODING =   base64encoder.c \
                base64decoder.c
index 2fbf4ca..07eeb30 100644 (file)
@@ -67,12 +67,14 @@ SRC_PARSE_TEST =    test_tokenchecker.c \
 SRC_COLL =     idtocb.c \
                arraybase.c \
                treebase.c \
-               bytearray.c
+               bytearray.c \
+               wordarray.c
 
 SRC_COLL_TEST =        test_idtocb.c \
                test_arraybase.c \
                test_treebase.c \
-               test_bytearray.c
+               test_bytearray.c \
+               test_wordarray.c
 
 SRC_CODING =   base64encoder.c \
                base64decoder.c
index 25e64a6..36c8999 100644 (file)
@@ -64,6 +64,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_arraybase_main(driver);
        test_treebase_main(driver);
        test_bytearray_main(driver);
+       test_wordarray_main(driver);
 
        test_base64encoder_main(driver);
        test_base64decoder_main(driver);