* NAME: data->storesb() * DESCRIPTION: incrementally store a signed byte of data */
| 295 | * DESCRIPTION: incrementally store a signed byte of data |
| 296 | */ |
| 297 | void d_storesb(register unsigned char **ptr, |
| 298 | register signed char data) |
| 299 | { |
| 300 | *(*ptr)++ = data; |
| 301 | } |
| 302 | |
| 303 | /* |
| 304 | * NAME: data->storeub() |
no outgoing calls
no test coverage detected