charset.c
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:18k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8. #include "vim.h"
  9. /*
  10.  * chartab[] is used
  11.  * - to quickly recognize ID characters
  12.  * - to quickly recognize file name characters
  13.  * - to quickly recognize printable characters
  14.  * - to store the size of a character on the screen: Printable is 1 position,
  15.  *   2 otherwise
  16.  */
  17. static int    chartab_initialized = FALSE;
  18. /*
  19.  * init_chartab(): Fill chartab[] with flags for ID and file name characters
  20.  * and the size of characters on the screen (1 or 2 positions).
  21.  * Also fills b_chartab[] with flags for keyword characters for current
  22.  * buffer.
  23.  *
  24.  * Return FAIL if 'iskeyword', 'isident', 'isfname' or 'isprint' option has an
  25.  * error, OK otherwise.
  26.  */
  27.     int
  28. init_chartab()
  29. {
  30.     int     c;
  31.     int     c2;
  32.     char_u  *p;
  33.     int     i;
  34.     int     tilde;
  35.     int     do_isalpha;
  36.     /*
  37.      * Set the default size for printable characters:
  38.      * From <Space> to '~' is 1 (printable), others are 2 (not printable).
  39.      * This also inits all 'isident' and 'isfname' flags to FALSE.
  40.      */
  41.     c = 0;
  42.     while (c < ' ')
  43. chartab[c++] = 2;
  44.     while (c <= '~')
  45. chartab[c++] = 1 + CHAR_IP;
  46. #ifdef FKMAP
  47.     if (p_altkeymap)
  48.     {
  49. while (c < YE)
  50.     chartab[c++] = 1 + CHAR_IP;
  51.     }
  52. #endif
  53.     while (c < 256)
  54. chartab[c++] = 2;
  55.     /*
  56.      * Init word char flags all to FALSE
  57.      */
  58.     if (curbuf != NULL)
  59. for (c = 0; c < 256; ++c)
  60.     curbuf->b_chartab[c] = FALSE;
  61. #ifdef LISPINDENT
  62.     /*
  63.      * In lisp mode the '-' character is included in keywords.
  64.      */
  65.     if (curbuf->b_p_lisp)
  66. curbuf->b_chartab['-'] = TRUE;
  67. #endif
  68.     /* Walk through the 'isident', 'iskeyword', 'isfname' and 'isprint'
  69.      * options Each option is a list of characters, character numbers or
  70.      * ranges, separated by commas, e.g.: "200-210,x,#-178,-"
  71.      */
  72.     for (i = 0; i < 4; ++i)
  73.     {
  74. if (i == 0)
  75.     p = p_isi;     /* first round: 'isident' */
  76. else if (i == 1)
  77.     p = p_isp;     /* second round: 'isprint' */
  78. else if (i == 2)
  79.     p = p_isf;     /* third round: 'isfname' */
  80. else /* i == 3 */
  81.     p = curbuf->b_p_isk;    /* fourth round: 'iskeyword' */
  82. while (*p)
  83. {
  84.     tilde = FALSE;
  85.     do_isalpha = FALSE;
  86.     if (*p == '^' && p[1] != NUL)
  87.     {
  88. tilde = TRUE;
  89. ++p;
  90.     }
  91.     if (isdigit(*p))
  92. c = getdigits(&p);
  93.     else
  94. c = *p++;
  95.     c2 = -1;
  96.     if (*p == '-' && p[1] != NUL)
  97.     {
  98. ++p;
  99. if (isdigit(*p))
  100.     c2 = getdigits(&p);
  101. else
  102.     c2 = *p++;
  103.     }
  104.     if (c <= 0 || (c2 < c && c2 != -1) || c2 >= 256 ||
  105.     !(*p == NUL || *p == ','))
  106. return FAIL;
  107.     if (c2 == -1) /* not a range */
  108.     {
  109. /*
  110.  * A single '@' (not "@-@"):
  111.  * Decide on letters being ID/printable/keyword chars with
  112.  * standard function isalpha(). This takes care of locale.
  113.  */
  114. if (c == '@')
  115. {
  116.     do_isalpha = TRUE;
  117.     c = 1;
  118.     c2 = 255;
  119. }
  120. else
  121.     c2 = c;
  122.     }
  123.     while (c <= c2)
  124.     {
  125. if (!do_isalpha || isalpha(c)
  126. #ifdef FKMAP
  127. || (p_altkeymap && (F_isalpha(c) || F_isdigit(c)))
  128. #endif
  129.     )
  130. {
  131.     if (i == 0) /* (re)set ID flag */
  132.     {
  133. if (tilde)
  134.     chartab[c] &= ~CHAR_ID;
  135. else
  136.     chartab[c] |= CHAR_ID;
  137.     }
  138.     else if (i == 1) /* set printable to 1 or 2 */
  139.     {
  140. if (c < ' ' || c > '~'
  141. #ifdef FKMAP
  142. || (p_altkeymap
  143.     && (F_isalpha(c) || F_isdigit(c)))
  144. #endif
  145. )
  146. {
  147.     if (tilde)
  148.     {
  149. chartab[c] = (chartab[c] & ~CHAR_MASK) + 2;
  150. chartab[c] &= ~CHAR_IP;
  151.     }
  152.     else
  153.     {
  154. chartab[c] = (chartab[c] & ~CHAR_MASK) + 1;
  155. chartab[c] |= CHAR_IP;
  156.     }
  157. }
  158.     }
  159.     else if (i == 2) /* (re)set fname flag */
  160.     {
  161. if (tilde)
  162.     chartab[c] &= ~CHAR_IF;
  163. else
  164.     chartab[c] |= CHAR_IF;
  165.     }
  166.     else /* i == 3 */ /* (re)set keyword flag */
  167. curbuf->b_chartab[c] = !tilde;
  168. }
  169. ++c;
  170.     }
  171.     p = skip_to_option_part(p);
  172. }
  173.     }
  174.     chartab_initialized = TRUE;
  175.     return OK;
  176. }
  177. /*
  178.  * Translate any special characters in buf[bufsize].
  179.  * If there is not enough room, not all characters will be translated.
  180.  */
  181.     void
  182. trans_characters(buf, bufsize)
  183.     char_u  *buf;
  184.     int     bufsize;
  185. {
  186.     int     len;     /* length of string needing translation */
  187.     int     room;     /* room in buffer after string */
  188.     char_u  *new;     /* translated character */
  189.     int     new_len;     /* length of new[] */
  190.     len = STRLEN(buf);
  191.     room = bufsize - len;
  192.     while (*buf)
  193.     {
  194. new = transchar(*buf);
  195. new_len = STRLEN(new);
  196. if (new_len > 1)
  197. {
  198.     room -= new_len - 1;
  199.     if (room <= 0)
  200. return;
  201.     mch_memmove(buf + new_len, buf + 1, (size_t)len);
  202. }
  203. mch_memmove(buf, new, (size_t)new_len);
  204. buf += new_len;
  205. --len;
  206.     }
  207. }
  208. /*
  209.  * Catch 22: chartab[] can't be initialized before the options are
  210.  * initialized, and initializing options may cause transchar() to be called!
  211.  * When chartab_initialized == FALSE don't use chartab[].
  212.  */
  213.     char_u *
  214. transchar(c)
  215.     int  c;
  216. {
  217.     static char_u   buf[5];
  218.     int     i;
  219.     i = 0;
  220.     if (IS_SPECIAL(c))     /* special key code, display as ~@ char */
  221.     {
  222. buf[0] = '~';
  223. buf[1] = '@';
  224. i = 2;
  225. c = K_SECOND(c);
  226.     }
  227.     if ((!chartab_initialized && ((c >= ' ' && c <= '~')
  228. #ifdef FKMAP
  229. || F_ischar(c)
  230. #endif
  231. )) || (chartab[c] & CHAR_IP))     /* printable character */
  232.     {
  233. buf[i] = c;
  234. buf[i + 1] = NUL;
  235.     }
  236.     else
  237. transchar_nonprint(buf + i, c);
  238.     return buf;
  239. }
  240.     void
  241. transchar_nonprint(buf, c)
  242.     char_u *buf;
  243.     int c;
  244. {
  245.     if (c <= 0x7f)     /* 0x00 - 0x1f and 0x7f */
  246.     {
  247. if (c == NL)
  248.     c = NUL; /* we use newline in place of a NUL */
  249. buf[0] = '^';
  250. buf[1] = c ^ 0x40; /* DEL displayed as ^? */
  251. buf[2] = NUL;
  252.     }
  253.     else if (c >= ' ' + 0x80 && c <= '~' + 0x80)    /* 0xa0 - 0xfe */
  254.     {
  255. buf[0] = '|';
  256. buf[1] = c - 0x80;
  257. buf[2] = NUL;
  258.     }
  259.     else     /* 0x80 - 0x9f and 0xff */
  260.     {
  261. buf[0] = '~';
  262. buf[1] = (c - 0x80) ^ 0x40; /* 0xff displayed as ~? */
  263. buf[2] = NUL;
  264.     }
  265. }
  266. /*
  267.  * return the number of characters 'c' will take on the screen
  268.  * This is used very often, keep it fast!!!
  269.  */
  270.     int
  271. charsize(c)
  272.     int c;
  273. {
  274.     if (IS_SPECIAL(c))
  275. return (chartab[K_SECOND(c)] & CHAR_MASK) + 2;
  276.     return (chartab[c] & CHAR_MASK);
  277. }
  278. /*
  279.  * Return the number of characters string 's' will take on the screen,
  280.  * counting TABs as two characters: "^I".
  281.  */
  282.     int
  283. vim_strsize(s)
  284.     char_u *s;
  285. {
  286.     int     len = 0;
  287.     while (*s)
  288. len += charsize(*s++);
  289.     return len;
  290. }
  291. /*
  292.  * Return the number of characters 'c' will take on the screen, taking
  293.  * into account the size of a tab.
  294.  * Use a define to make it fast, this is used very often!!!
  295.  * Also see getvcol() below.
  296.  */
  297. #define RET_WIN_BUF_CHARTABSIZE(wp, buf, c, col) 
  298.     if ((c) == TAB && (!(wp)->w_p_list || lcs_tab1)) 
  299.     { 
  300. int ts; 
  301. ts = (buf)->b_p_ts; 
  302. return (int)(ts - (col % ts)); 
  303.     } 
  304.     else 
  305. return charsize(c);
  306.     int
  307. chartabsize(c, col)
  308.     int c;
  309.     colnr_t col;
  310. {
  311.     RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, c, col)
  312. }
  313.     int
  314. win_chartabsize(wp, c, col)
  315.     WIN *wp;
  316.     int c;
  317.     colnr_t col;
  318. {
  319.     RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, c, col)
  320. }
  321. /*
  322.  * return the number of characters the string 's' will take on the screen,
  323.  * taking into account the size of a tab
  324.  */
  325.     int
  326. linetabsize(s)
  327.     char_u *s;
  328. {
  329.     colnr_t col = 0;
  330.     while (*s != NUL)
  331. col += lbr_chartabsize(s++, col);
  332.     return (int)col;
  333. }
  334. /*
  335.  * Like linetabsize(), but for a given window instead of the current one.
  336.  */
  337.     int
  338. win_linetabsize(wp, s)
  339.     WIN *wp;
  340.     char_u *s;
  341. {
  342.     colnr_t col = 0;
  343.     while (*s != NUL)
  344. col += win_lbr_chartabsize(wp, s++, col, NULL);
  345.     return (int)col;
  346. }
  347. /*
  348.  * return TRUE if 'c' is a normal identifier character
  349.  * letters and characters from 'isident' option.
  350.  */
  351.     int
  352. vim_isIDc(c)
  353.     int c;
  354. {
  355.     return (c < 0x100 && (chartab[c] & CHAR_ID));
  356. }
  357. /*
  358.  * return TRUE if 'c' is a keyword character: Letters and characters from
  359.  * 'iskeyword' option for current buffer.
  360.  */
  361.     int
  362. vim_iswordc(c)
  363.     int c;
  364. {
  365.     return (c < 0x100 && curbuf->b_chartab[c]);
  366. }
  367.     int
  368. vim_iswordc_buf(c, buf)
  369.     int c;
  370.     BUF *buf;
  371. {
  372.     return (c < 0x100 && buf->b_chartab[c]);
  373. }
  374. /*
  375.  * return TRUE if 'c' is a valid file-name character
  376.  */
  377.     int
  378. vim_isfilec(c)
  379.     int c;
  380. {
  381.     return (c < 0x100 && (chartab[c] & CHAR_IF));
  382. }
  383. /*
  384.  * return TRUE if 'c' is a printable character
  385.  */
  386.     int
  387. vim_isprintc(c)
  388.     int c;
  389. {
  390.     return (c < 0x100 && (chartab[c] & CHAR_IP));
  391. }
  392. /*
  393.  * return TRUE if 'c' is a printable character
  394.  *
  395.  * No check for (c < 0x100) to make it a bit faster.
  396.  * This is the most often used function, keep it fast!
  397.  */
  398.     int
  399. safe_vim_isprintc(c)
  400.     int c;
  401. {
  402.     return (chartab[c] & CHAR_IP);
  403. }
  404. /*
  405.  * like chartabsize(), but also check for line breaks on the screen
  406.  */
  407.     int
  408. lbr_chartabsize(s, col)
  409.     unsigned char   *s;
  410.     colnr_t     col;
  411. {
  412.     if (!curwin->w_p_lbr && *p_sbr == NUL)
  413.     {
  414. RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, *s, col)
  415.     }
  416.     return win_lbr_chartabsize(curwin, s, col, NULL);
  417. }
  418. /*
  419.  * This function is used very often, keep it fast!!!!
  420.  * Warning: *head is only set if it's a non-zero value, init to 0 before
  421.  * calling.
  422.  */
  423.     int
  424. win_lbr_chartabsize(wp, s, col, head)
  425.     WIN     *wp;
  426.     unsigned char   *s;
  427.     colnr_t     col;
  428.     int     *head;
  429. {
  430.     int     c = *s;
  431.     int     size;
  432.     colnr_t col2;
  433.     colnr_t colmax;
  434.     int     added;
  435.     int     numberextra;
  436. /*
  437.  * No 'linebreak' and 'showbreak': return quickly.
  438.  */
  439.     if (!wp->w_p_lbr && *p_sbr == NUL)
  440.     {
  441. RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, c, col)
  442.     }
  443. /*
  444.  * First get normal size, without 'linebreak'
  445.  */
  446.     size = win_chartabsize(wp, c, col);
  447. /*
  448.  * If 'linebreak' set check at a blank before a non-blank if the line needs a
  449.  * break here
  450.  */
  451.     if (wp->w_p_lbr && vim_isbreak(c) && !vim_isbreak(s[1]) &&
  452.        !wp->w_p_list && wp->w_p_wrap)
  453.     {
  454. numberextra = wp->w_p_nu? 8: 0;
  455. /* count all characters from first non-blank after a blank up to next
  456.  * non-blank after a blank */
  457. col2 = col;
  458. colmax = (((col + numberextra) / Columns) + 1) * Columns;
  459. while ((c = *++s) != NUL && (vim_isbreak(c)
  460. || (!vim_isbreak(c) && (col2 == col || !vim_isbreak(s[-1])))))
  461. {
  462.     col2 += win_chartabsize(wp, c, col2);
  463.     if (col2 + numberextra >= colmax) /* doesn't fit */
  464.     {
  465. size = Columns - ((col + numberextra) % Columns);
  466. break;
  467.     }
  468. }
  469.     }
  470. /*
  471.  * May have to add something for 'showbreak' string at start of line
  472.  * Set *head to the size of what we add.
  473.  */
  474.     added = 0;
  475.     if (*p_sbr != NUL && wp->w_p_wrap && col)
  476.     {
  477. numberextra = wp->w_p_nu? 8: 0;
  478. col = (col + numberextra) % Columns;
  479. if (col == 0 || col + size > (colnr_t)Columns)
  480. {
  481.     added = STRLEN(p_sbr);
  482.     size += added;
  483.     if (col != 0)
  484. added = 0;
  485. }
  486.     }
  487.     if (head != NULL)
  488. *head = added;
  489.     return size;
  490. }
  491. /*
  492.  * Get virtual column number of pos.
  493.  *  start: on the first position of this character (TAB, ctrl)
  494.  * cursor: where the cursor is on this character (first char, except for TAB)
  495.  *    end: on the last position of this character (TAB, ctrl)
  496.  *
  497.  * This is used very often, keep it fast!
  498.  */
  499.     void
  500. getvcol(wp, pos, start, cursor, end)
  501.     WIN *wp;
  502.     FPOS *pos;
  503.     colnr_t *start;
  504.     colnr_t *cursor;
  505.     colnr_t *end;
  506. {
  507.     int     col;
  508.     colnr_t     vcol;
  509.     char_u    *ptr;
  510.     int     incr;
  511.     int     head;
  512.     int     ts = wp->w_buffer->b_p_ts;
  513.     int     c;
  514.     vcol = 0;
  515.     ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
  516.     /*
  517.      * This function is used very often, do some speed optimizations.
  518.      * When 'list', 'linebreak' and 'showbreak' are not set use a simple loop.
  519.      */
  520.     if ((!wp->w_p_list || lcs_tab1) && !wp->w_p_lbr && *p_sbr == NUL)
  521.     {
  522. head = 0;
  523. for (col = pos->col; ; --col, ++ptr)
  524. {
  525.     c = *ptr;
  526.     /* make sure we don't go past the end of the line */
  527.     if (c == NUL)
  528.     {
  529. incr = 1; /* NUL at end of line only takes one column */
  530. break;
  531.     }
  532.     /* A tab gets expanded, depending on the current column */
  533.     if (c == TAB)
  534. incr = ts - (vcol % ts);
  535.     else
  536. incr = CHARSIZE(c);
  537.     if (col == 0) /* character at pos.col */
  538. break;
  539.     vcol += incr;
  540. }
  541.     }
  542.     else
  543.     {
  544. for (col = pos->col; ; --col, ++ptr)
  545. {
  546.     /* A tab gets expanded, depending on the current column */
  547.     head = 0;
  548.     incr = win_lbr_chartabsize(wp, ptr, vcol, &head);
  549.     /* make sure we don't go past the end of the line */
  550.     if (*ptr == NUL)
  551.     {
  552. incr = 1; /* NUL at end of line only takes one column */
  553. break;
  554.     }
  555.     if (col == 0) /* character at pos.col */
  556. break;
  557.     vcol += incr;
  558. }
  559.     }
  560.     if (start != NULL)
  561. *start = vcol + head;
  562.     if (end != NULL)
  563. *end = vcol + incr - 1;
  564.     if (cursor != NULL)
  565.     {
  566. if (*ptr == TAB && (State & NORMAL) && !wp->w_p_list
  567.  && !(VIsual_active && *p_sel == 'e'))
  568.     *cursor = vcol + incr - 1;     /* cursor at end */
  569. else
  570.     *cursor = vcol + head;     /* cursor at start */
  571.     }
  572. }
  573. /*
  574.  * Get the most left and most right virtual column of pos1 and pos2.
  575.  * Used for Visual block mode.
  576.  */
  577.     void
  578. getvcols(pos1, pos2, left, right)
  579.     FPOS    *pos1, *pos2;
  580.     colnr_t *left, *right;
  581. {
  582.     colnr_t l1, l2, r1, r2;
  583.     getvcol(curwin, pos1, &l1, NULL, &r1);
  584.     getvcol(curwin, pos2, &l2, NULL, &r2);
  585.     if (l1 < l2)
  586. *left = l1;
  587.     else
  588. *left = l2;
  589.     if (r1 > r2)
  590. *right = r1;
  591.     else
  592. *right = r2;
  593. }
  594. /*
  595.  * skipwhite: skip over ' ' and 't'.
  596.  */
  597.     char_u *
  598. skipwhite(p)
  599.     char_u *p;
  600. {
  601.     while (vim_iswhite(*p)) /* skip to next non-white */
  602. ++p;
  603.     return p;
  604. }
  605. /*
  606.  * skipdigits: skip over digits;
  607.  */
  608.     char_u *
  609. skipdigits(p)
  610.     char_u *p;
  611. {
  612.     while (isdigit(*p)) /* skip to next non-digit */
  613. ++p;
  614.     return p;
  615. }
  616. /*
  617.  * vim_isdigit: version of isdigit() that can handle characters > 0x100.
  618.  */
  619.     int
  620. vim_isdigit(c)
  621.     int     c;
  622. {
  623.     return (c > 0 && c < 0x100 && isdigit(c));
  624. }
  625. /*
  626.  * skiptowhite: skip over text until ' ' or 't' or NUL.
  627.  */
  628.     char_u *
  629. skiptowhite(p)
  630.     char_u *p;
  631. {
  632.     while (*p != ' ' && *p != 't' && *p != NUL)
  633. ++p;
  634.     return p;
  635. }
  636. /*
  637.  * skiptowhite_esc: Like skiptowhite(), but also skip escaped chars
  638.  */
  639.     char_u *
  640. skiptowhite_esc(p)
  641.     char_u *p;
  642. {
  643.     while (*p != ' ' && *p != 't' && *p != NUL)
  644.     {
  645. if ((*p == '\' || *p == Ctrl('V')) && *(p + 1) != NUL)
  646.     ++p;
  647. ++p;
  648.     }
  649.     return p;
  650. }
  651. /*
  652.  * Getdigits: Get a number from a string and skip over it.
  653.  *
  654.  * Note: the argument is a pointer to a char_u pointer!
  655.  */
  656.     long
  657. getdigits(pp)
  658.     char_u **pp;
  659. {
  660.     char_u *p;
  661.     long retval;
  662.     p = *pp;
  663.     retval = atol((char *)p);
  664.     p = skipdigits(p);     /* skip to next non-digit */
  665.     *pp = p;
  666.     return retval;
  667. }
  668. /*
  669.  * Return TRUE if "lbuf" is empty or only contains blanks.
  670.  */
  671.     int
  672. vim_isblankline(lbuf)
  673.     char_u *lbuf;
  674. {
  675.     char_u *p;
  676.     p = skipwhite(lbuf);
  677.     return (*p == NUL || *p == 'r' || *p == 'n');
  678. }
  679. /*
  680.  * Convert a string into a long and/or unsigned long, taking care of
  681.  * hexadecimal and octal numbers.
  682.  * If "hexp" is not NULL, returns a flag to indicate the type of the number:
  683.  *  0     decimal
  684.  *  '0'     octal
  685.  *  'X'     hex
  686.  *  'x'     hex
  687.  * If "len" is not NULL, the length of the number in characters is returned.
  688.  * If "nptr" is not NULL, the signed result is returned in it.
  689.  * If "unptr" is not NULL, the unsigned result is returned in it.
  690.  */
  691.     void
  692. vim_str2nr(start, hexp, len, dooct, dohex, nptr, unptr)
  693.     char_u *start;
  694.     int *hexp;     /* return: type of number 0 = decimal, 'x'
  695.        or 'X' is hex, '0' = octal */
  696.     int *len;     /* return: detected length of number */
  697.     int dooct;     /* recognize octal number */
  698.     int dohex;     /* recognize hex number */
  699.     long *nptr;     /* return: signed result */
  700.     unsigned long *unptr;     /* return: unsigned result */
  701. {
  702.     char_u     *ptr = start;
  703.     int     hex = 0; /* default is decimal */
  704.     int     negative = FALSE;
  705.     long     n = 0;
  706.     unsigned long   un = 0;
  707.     if (ptr[0] == '-')
  708.     {
  709. negative = TRUE;
  710. ++ptr;
  711.     }
  712.     if (ptr[0] == '0') /* could be hex or octal */
  713.     {
  714. hex = ptr[1];
  715. if (dohex && (hex == 'X' || hex == 'x') && isxdigit(ptr[2]))
  716.     ptr += 2; /* hexadecimal */
  717. else
  718. {
  719.     if (dooct && isdigit(hex))
  720. hex = '0'; /* octal */
  721.     else
  722. hex = 0; /* 0 by itself is decimal */
  723. }
  724.     }
  725.     /*
  726.      * Do the string-to-numeric conversion "manually" to avoid sscanf quirks.
  727.      */
  728.     if (hex)
  729.     {
  730. if (hex == '0')
  731. {
  732.     /* octal */
  733.     while ('0' <= *ptr && *ptr <= '7')
  734.     {
  735. n = 8 * n + (long)(*ptr - '0');
  736. un = 8 * un + (unsigned long)(*ptr - '0');
  737. ++ptr;
  738.     }
  739. }
  740. else
  741. {
  742.     /* hex */
  743.     while (isxdigit(*ptr))
  744.     {
  745. n = 16 * n + (long)hex2nr(*ptr);
  746. un = 16 * un + (unsigned long)hex2nr(*ptr);
  747. ++ptr;
  748.     }
  749. }
  750.     }
  751.     else
  752.     {
  753. /* decimal */
  754. while (isdigit(*ptr))
  755. {
  756.     n = 10 * n + (long)(*ptr - '0');
  757.     un = 10 * un + (unsigned long)(*ptr - '0');
  758.     ++ptr;
  759. }
  760.     }
  761.     if (!hex && negative)   /* account for leading '-' for decimal numbers */
  762. n = -n;
  763.     if (hexp != NULL)
  764. *hexp = hex;
  765.     if (len != NULL)
  766. *len = ptr - start;
  767.     if (nptr != NULL)
  768. *nptr = n;
  769.     if (unptr != NULL)
  770. *unptr = un;
  771. }
  772. /*
  773.  * Return the value of a single hex character.
  774.  * Only valid when the argument is '0' - '9', 'A' - 'F' or 'a' - 'f'.
  775.  */
  776.     int
  777. hex2nr(c)
  778.     int     c;
  779. {
  780.     if (c >= 'a')
  781. return c - 'a' + 10;
  782.     if (c >= 'A')
  783. return c - 'A' + 10;
  784.     return c - '0';
  785. }