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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/plugins/pppoatm/
H A Dans.c197 static char *cc_table = NULL; local
203 if (!cc_table) {
204 if (!(cc_table = malloc(100))) {
208 memset(cc_table,E164_CC_DEFAULT_LEN,100);
216 if (cc < 10) cc_table[cc] = 1;
217 else if (cc < 100) cc_table[cc] = 2;
218 else cc_table[cc/10] = 3;
224 if (cc_table[p0] == 1) return 1;
225 return cc_table[p0*10+p1];

Completed in 41 milliseconds