- Timestamp:
- 07/14/2017 04:18:35 PM (7 years ago)
- Branches:
- master
- Children:
- ace9ee7
- Parents:
- 1efe224
- Location:
- iolib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
iolib/dofmt.c
r1efe224 rfa38804 63 63 int32_t val; 64 64 65 /*66 67 */68 69 65 count = 0; 70 66 … … 112 108 break; 113 109 } 114 115 /*116 117 */118 110 119 111 if (fcode EQ '*') { … … 159 151 lzero = 0; 160 152 161 /* 162 163 */ 153 164 154 switch (fcode = *format++) { 165 155 … … 212 202 p = bp = buf + MAXDIGS; 213 203 214 /* 215 216 */ 204 217 205 switch (hradix) { 218 206 … … 276 264 break; 277 265 278 /* 279 280 */ 266 281 267 default: 282 268 buf[0] = fcode; … … 309 295 } 310 296 311 /* 312 313 */ 297 314 298 if (lzero < 0) 315 299 lzero = 0; -
iolib/mdump.c
r1efe224 rfa38804 27 27 #define PERLINE 16 28 28 29 /*30 31 */32 33 29 /* 34 30 ============================================================================= … … 47 43 printf("."); 48 44 } 49 50 /*51 52 */53 45 54 46 /* … … 107 99 } 108 100 109 /*110 111 */112 113 101 #if TESTER 114 102 -
iolib/rawio.c
r1efe224 rfa38804 30 30 ^Z, or buffer full. Returns the byte that stopped the input, 31 31 or ERR01 for buffer full. 32 33 34 32 35 33 int … … 60 58 */ 61 59 62 /*63 */64 65 60 #include "ram.h" 66 61 … … 96 91 return(ERR01); /* buffer full */ 97 92 } 98 99 /*100 */101 93 102 94 int16_t getln(int16_t unit, int16_t nb, int8_t *buf) … … 142 134 return((int16_t)c); /* return -- CR or LF hit */ 143 135 144 /*145 */146 147 136 case CTL('X'): 148 137 … … 162 151 } 163 152 164 /*165 */166 167 153 int16_t getrln(int16_t unit, int16_t nb, int8_t *buf) 168 154 { … … 205 191 } 206 192 207 /*208 */209 210 193 void writeln(int16_t unit, int8_t *buf) 211 194 {
Note:
See TracChangeset
for help on using the changeset viewer.