[BACK]Return to term_ascii.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/term_ascii.c between version 1.25 and 1.26

version 1.25, 2014/10/28 17:35:42 version 1.26, 2014/10/28 18:48:56
Line 17 
Line 17 
  */   */
 #include <sys/types.h>  #include <sys/types.h>
   
   #include <assert.h>
 #include <locale.h>  #include <locale.h>
 #include <stdint.h>  #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
Line 327 
Line 328 
         "j",    "DZ",   "Dz",   "dz",   "'\bG", "'\bg", "HV",   "W",          "j",    "DZ",   "Dz",   "dz",   "'\bG", "'\bg", "HV",   "W",
         "`\bN", "`\bn", "A",    "a",    "'\bAE","'\bae","O",    "o"};          "`\bN", "`\bn", "A",    "a",    "'\bAE","'\bae","O",    "o"};
   
         if (uc < 0)          assert(uc >= 0);
                 return("<?>");  
         if ((size_t)uc < sizeof(tab)/sizeof(tab[0]))          if ((size_t)uc < sizeof(tab)/sizeof(tab[0]))
                 return(tab[uc]);                  return(tab[uc]);
         return(mchars_uc2str(uc));          return(mchars_uc2str(uc));

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26