1/*	$NetBSD: punycode_examples.h,v 1.3 2023/06/19 21:41:45 christos Exp $	*/
2
3/* ./punycode_examples.h */
4/* Automatically generated at 2022-11-15T14:04:18.893502 */
5
6#ifndef PUNYCODE_EXAMPLES_H
7#define PUNYCODE_EXAMPLES_H 1
8
9#include <krb5/krb5-types.h>
10
11#define MAX_LENGTH 40
12
13struct punycode_example {
14    size_t len;
15    uint32_t val[MAX_LENGTH];
16    const char *pc;
17    const char *description;
18};
19
20extern const struct punycode_example punycode_examples[];
21
22extern const size_t punycode_examples_size;
23#endif /* PUNYCODE_EXAMPLES_H */
24