- Timestamp:
- 07/10/2017 12:02:05 PM (7 years ago)
- Branches:
- master
- Children:
- 39a696b
- Parents:
- 5fa506d
- Location:
- lib700
- Files:
-
- 7 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
lib700/bitrev.c
r5fa506d r6262b5c 5 5 ============================================================================= 6 6 */ 7 8 #include "all.h" 7 9 8 10 static int16_t bitmask[] = { -
lib700/ctype.c
r5fa506d r6262b5c 14 14 #define _CTYPE_C 15 15 16 #include " ctype.h"16 #include "all.h" 17 17 18 18 #define _CS _C|_S … … 66 66 }; 67 67 68 -
lib700/ispow2.c
r5fa506d r6262b5c 11 11 */ 12 12 13 #include " stddefs.h"13 #include "all.h" 14 14 15 15 int16_t ispow2(int32_t x) … … 35 35 return(FALSE); /* no bits on isn't a power of 2 */ 36 36 } 37 -
lib700/mangle.c
r5fa506d r6262b5c 20 20 */ 21 21 22 #include "all.h" 23 22 24 int32_t mangle(int32_t *bitmap, int16_t nb, int32_t ib) 23 25 { -
lib700/micons.c
r5fa506d r6262b5c 23 23 ============================================================================= 24 24 */ 25 26 #include "all.h" 25 27 26 28 #define TESTER 0 /* define non-zero for a test program */ … … 72 74 #if TESTER 73 75 74 #include " stdio.h"76 #include "all.h" 75 77 76 78 /* … … 95 97 96 98 #endif 99 -
lib700/tolower.c
r5fa506d r6262b5c 6 6 */ 7 7 8 #include " ctype.h"8 #include "all.h" 9 9 10 10 /* … … 33 33 } 34 34 35 -
lib700/toupper.c
r5fa506d r6262b5c 6 6 */ 7 7 8 #include " ctype.h"8 #include "all.h" 9 9 10 10 /* … … 31 31 return(x); 32 32 } 33
Note:
See TracChangeset
for help on using the changeset viewer.