-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo-antpath.h
86 lines (56 loc) · 1.95 KB
/
go-antpath.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Created by "go tool cgo" - DO NOT EDIT. */
/* package command-line-arguments */
/* Start of preamble from import "C" comments. */
#line 3 "/Users/xiaoyueya/projects/gopro/src/github.com/vibrantbyte/go-antpath/antpath.go"
#include <stdlib.h>
#line 1 "cgo-generated-wrapper"
/* End of preamble from import "C" comments. */
/* Start of boilerplate cgo prologue. */
#line 1 "cgo-gcc-export-header-prolog"
#ifndef GO_CGO_PROLOGUE_H
#define GO_CGO_PROLOGUE_H
typedef signed char GoInt8;
typedef unsigned char GoUint8;
typedef short GoInt16;
typedef unsigned short GoUint16;
typedef int GoInt32;
typedef unsigned int GoUint32;
typedef long long GoInt64;
typedef unsigned long long GoUint64;
typedef GoInt64 GoInt;
typedef GoUint64 GoUint;
typedef __SIZE_TYPE__ GoUintptr;
typedef float GoFloat32;
typedef double GoFloat64;
typedef float _Complex GoComplex64;
typedef double _Complex GoComplex128;
/*
static assertion to make sure the file is being used on architecture
at least with matching size of GoInt.
*/
typedef char _check_for_64_bit_pointer_matching_GoInt[sizeof(void*)==64/8 ? 1:-1];
typedef struct { const char *p; GoInt n; } GoString;
typedef void *GoMap;
typedef void *GoChan;
typedef struct { void *t; void *v; } GoInterface;
typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
#endif
/* End of boilerplate cgo prologue. */
#ifdef __cplusplus
extern "C" {
#endif
extern char* Version();
extern void Increment(GoInt* p0);
extern GoUint8 IsPattern(GoString p0);
extern GoUint8 Match(GoString p0, GoString p1);
extern GoUint8 MatchStart(GoString p0, GoString p1);
extern char* ExtractPathWithinPattern(GoString p0, GoString p1);
extern char* ExtractUriTemplateVariables(GoString p0, GoString p1);
extern char* Combine(GoString p0, GoString p1);
extern void SetPathSeparator(GoString p0);
extern void SetCaseSensitive(GoUint8 p0);
extern void SetTrimTokens(GoUint8 p0);
extern void SetCachePatterns(GoUint8 p0);
#ifdef __cplusplus
}
#endif