home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_07 / 1007010b < prev    next >
Text File  |  1992-05-05  |  254b  |  15 lines

  1. Listing 2 -- mblen.c
  2.  
  3. /* mblen function */
  4. #include <stdlib.h>
  5.  
  6.         /* static data */
  7. _Mbsave _Mbxlen = {0};
  8.  
  9. int (mblen)(const char *s, size_t n)
  10.     {    /*    determine length of next multibyte code */
  11.     return (_Mbtowc(NULL, s, n, &_Mbxlen));
  12.     }
  13.  
  14.  
  15.