bit 126 src/word.c char *bit = NULL; bit 129 src/word.c bit = malloc_chk(MAXLEN + 1, "word2bit.bit"); bit 131 src/word.c bit[i++] = (word & mask) ? '1' : '0'; bit 133 src/word.c bit[i] = '\0'; bit 134 src/word.c return bit; bit 139 src/word.c char *bit = word2bit(word); bit 146 src/word.c fprintf(stdout, " = #%04X = %s", word, bit); bit 155 src/word.c FREE(bit);