HomeSort by relevance Sort by last modified time
    Searched full:cc_table (Results 1 - 1 of 1) sorted by null

  /external/ppp/pppd/plugins/pppoatm/
ans.c 197 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 32 milliseconds