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