Searched refs:in (Results 1 - 1 of 1) sorted by relevance

/k10sensor/src/
H A Dpciinspect.c8 * You may not use this file except in compliance with the License.
15 * When distributing Covered Code, include this CDDL HEADER in each file.
80 #define CONV "c Num # print the given Num in dec, hex, and bin format\n"
96 getNum(char *in, uint32_t *num) { argument
99 if (in == NULL) {
102 if ((idx = strchr(in, 'x')) != NULL) {
104 } else if ((idx = strchr(in, 'b')) != NULL) {
106 for (k=in; k < idx; k++) {
118 return sscanf(in, "%d", num) != 0;

Completed in 11 milliseconds