Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/heimdal/lib/wind/punycode_examples.h
34889 views
1
/* ./punycode_examples.h */
2
/* Automatically generated at 2012-01-11T14:07:08.539140 */
3
4
#ifndef PUNYCODE_EXAMPLES_H
5
#define PUNYCODE_EXAMPLES_H 1
6
7
#include <krb5-types.h>
8
9
#define MAX_LENGTH 40
10
11
struct punycode_example {
12
size_t len;
13
uint32_t val[MAX_LENGTH];
14
const char *pc;
15
const char *description;
16
};
17
18
extern const struct punycode_example punycode_examples[];
19
20
extern const size_t punycode_examples_size;
21
#endif /* PUNYCODE_EXAMPLES_H */
22
23