[BACK]Return to chars.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/chars.c between version 1.40 and 1.41

version 1.40, 2011/05/01 08:38:56 version 1.41, 2011/05/14 17:54:42
Line 151  mchars_num2char(const char *p, size_t sz)
Line 151  mchars_num2char(const char *p, size_t sz)
                 return('\0');                  return('\0');
   
         i = atoi(p);          i = atoi(p);
         return(isprint(i) ? (char)i : '\0');          /* LINTED */
           return(isprint(i) ? i : '\0');
 }  }
   
 /*  /*

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

CVSweb