1226031Sstas/* ./punycode_examples.h */
2234027Sstas/* Automatically generated at 2012-01-11T14:07:08.539140 */
3226031Sstas
4226031Sstas#ifndef PUNYCODE_EXAMPLES_H
5226031Sstas#define PUNYCODE_EXAMPLES_H 1
6226031Sstas
7226031Sstas#include <krb5-types.h>
8226031Sstas
9226031Sstas#define MAX_LENGTH 40
10226031Sstas
11226031Sstasstruct punycode_example {
12226031Sstas    size_t len;
13226031Sstas    uint32_t val[MAX_LENGTH];
14226031Sstas    const char *pc;
15226031Sstas    const char *description;
16226031Sstas};
17226031Sstas
18226031Sstasextern const struct punycode_example punycode_examples[];
19226031Sstas
20226031Sstasextern const size_t punycode_examples_size;
21226031Sstas#endif /* PUNYCODE_EXAMPLES_H */
22