pr29.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* pr29.h --- Detect strings which are non-idempotent under NFKC.
  2. * Copyright (C) 2004, 2005, 2006, 2007 Simon Josefsson.
  3. *
  4. * This file is part of GNU Libidn.
  5. *
  6. * GNU Libidn is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * GNU Libidn is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with GNU Libidn; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  19. *
  20. */
  21. #ifndef PR29_H
  22. # define PR29_H
  23. # ifdef __cplusplus
  24. extern "C"
  25. {
  26. # endif
  27. /* Get size_t. */
  28. # include <stdlib.h>
  29. /* Get uint32_t. */
  30. # include "idn-int.h"
  31. /* Error codes. */
  32. typedef enum
  33. {
  34. PR29_SUCCESS = 0,
  35. PR29_PROBLEM = 1, /* String is a problem sequence. */
  36. PR29_STRINGPREP_ERROR = 2 /* Charset conversion failed (p29_8*). */
  37. } Pr29_rc;
  38. extern const char *pr29_strerror (Pr29_rc rc);
  39. extern int pr29_4 (const uint32_t * in, size_t len);
  40. extern int pr29_4z (const uint32_t * in);
  41. extern int pr29_8z (const char *in);
  42. # ifdef __cplusplus
  43. }
  44. # endif
  45. #endif /* PR29_H */