Edit

thodg/libiconv/src/ascii.h

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2000-11-20 18:30:25
    Hash : 1ca2adf0
    Message : Use ucs4_t instead of locally defined wchar_t.

  • src/ascii.h
  • /*
     * ASCII
     */
    
    static int
    ascii_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
    {
      unsigned char c = *s;
      if (c < 0x80) {
        *pwc = (ucs4_t) c;
        return 1;
      }
      return RET_ILSEQ;
    }
    
    static int
    ascii_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
    {
      if (wc < 0x0080) {
        *r = wc;
        return 1;
      }
      return RET_ILSEQ;
    }