[lc-checkins] CVS: linux26/lib/WKdm WKdm.c,1.1,1.2 WKdm.h,1.1,1.2
Status: Beta
Brought to you by:
nitin_sf
From: Nitin G. <nit...@us...> - 2006-06-09 16:14:57
|
Update of /cvsroot/linuxcompressed/linux26/lib/WKdm In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13755/lib/WKdm Modified Files: WKdm.c WKdm.h Log Message: all three algos: WKdm, WK4x4, LZO ready Index: WKdm.c =================================================================== RCS file: /cvsroot/linuxcompressed/linux26/lib/WKdm/WKdm.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** WKdm.c 9 Jun 2006 01:44:10 -0000 1.1 --- WKdm.c 9 Jun 2006 16:14:55 -0000 1.2 *************** *** 110,114 **** /* A structure to store each element of the dictionary. */ ! typedef WK_word DictionaryElement; /* ============================================================ */ --- 110,114 ---- /* A structure to store each element of the dictionary. */ ! //typedef WK_word DictionaryElement; /* ============================================================ */ Index: WKdm.h =================================================================== RCS file: /cvsroot/linuxcompressed/linux26/lib/WKdm/WKdm.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** WKdm.h 9 Jun 2006 01:44:10 -0000 1.1 --- WKdm.h 9 Jun 2006 16:14:55 -0000 1.2 *************** *** 17,20 **** --- 17,23 ---- /* Types and Constants */ + #if !defined(_WK_common_H) + #define _WK_common_H + /* A manipulable type that is the machine word size. */ typedef unsigned int WK_word; *************** *** 23,26 **** --- 26,33 ---- #define DICTIONARY_SIZE 16 + typedef WK_word DictionaryElement; + + #endif /* _WK_common_H */ + /* ============================================================ */ /* Interface */ |