- Timestamp:
- 07/08/2017 02:42:31 PM (7 years ago)
- Branches:
- master
- Children:
- 342a56f
- Parents:
- 46d8069
- Location:
- lib700
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
lib700/bitrev.c
r46d8069 r0580615 22 22 */ 23 23 24 int 25 bitrev(bitsin, nbits) 26 int bitsin, nbits; 24 int bitrev(int bitsin, int nbits) 27 25 { 28 26 int m, n; -
lib700/ctype.c
r46d8069 r0580615 32 32 #else 33 33 34 ___atab()34 void ___atab(void) 35 35 { 36 36 return; -
lib700/ispow2.c
r46d8069 r0580615 13 13 #include "stddefs.h" 14 14 15 short 16 ispow2(x) 17 register long x; 15 short ispow2(long x) 18 16 { 19 17 register short i; -
lib700/mangle.c
r46d8069 r0580615 20 20 */ 21 21 22 long 23 mangle(bitmap, nb, ib) 24 register long *bitmap; 25 register short nb; 26 register long ib; 22 long mangle(long *bitmap, short nb, long ib) 27 23 { 28 24 register long bm; /* scan mask */ -
lib700/micons.c
r46d8069 r0580615 35 35 */ 36 36 37 short 38 micons(wi) 39 short wi; 37 short micons(short wi) 40 38 { 41 39 return((short)( ((wi << 8) & 0xFF00) | ((wi >> 8) & 0x00FF) ) ); … … 48 46 */ 49 47 50 int 51 miconi(wi) 52 int wi; 48 int miconi(int wi) 53 49 { 54 50 if (sizeof (int) == 4) … … 65 61 */ 66 62 67 long 68 miconl(wi) 69 long wi; 63 long miconl(long wi) 70 64 { 71 65 return( ((wi << 24) & 0xFF000000L) | ((wi << 8) & 0x00FF0000L) | -
lib700/tolower.c
r46d8069 r0580615 14 14 */ 15 15 16 int 17 tolower(c) 18 int c; 16 int tolower(int c) 19 17 { 20 18 int x; -
lib700/toupper.c
r46d8069 r0580615 14 14 */ 15 15 16 int 17 toupper(c) 18 int c; 16 int toupper(int c) 19 17 { 20 18 int x;
Note:
See TracChangeset
for help on using the changeset viewer.