encode.h 259 B

1234567891011
  1. #ifndef _ENCODE_H
  2. #define _ENCODE_H
  3. #define BLKID_ENC_UTF16BE 0
  4. #define BLKID_ENC_UTF16LE 1
  5. #define BLKID_ENC_LATIN1 2
  6. size_t blkid_encode_to_utf8(int enc, unsigned char *dest, size_t len,
  7. const unsigned char *src, size_t count);
  8. #endif /* _ENCODE_H */