1*afab4e30Schristos /* $NetBSD: punycode_examples.h,v 1.3 2023/06/19 21:41:45 christos Exp $ */ 2929c70cbSchristos 3929c70cbSchristos /* ./punycode_examples.h */ 4*afab4e30Schristos /* Automatically generated at 2022-11-15T14:04:18.893502 */ 5929c70cbSchristos 6929c70cbSchristos #ifndef PUNYCODE_EXAMPLES_H 7929c70cbSchristos #define PUNYCODE_EXAMPLES_H 1 8929c70cbSchristos 9929c70cbSchristos #include <krb5/krb5-types.h> 10929c70cbSchristos 11929c70cbSchristos #define MAX_LENGTH 40 12929c70cbSchristos 13929c70cbSchristos struct punycode_example { 14929c70cbSchristos size_t len; 15929c70cbSchristos uint32_t val[MAX_LENGTH]; 16929c70cbSchristos const char *pc; 17929c70cbSchristos const char *description; 18929c70cbSchristos }; 19929c70cbSchristos 20929c70cbSchristos extern const struct punycode_example punycode_examples[]; 21929c70cbSchristos 22929c70cbSchristos extern const size_t punycode_examples_size; 23929c70cbSchristos #endif /* PUNYCODE_EXAMPLES_H */ 24