|
diff --git a/git.h b/git.h index 922a167..b1e4828 100644 --- a/ git.h+++ b/ git.h |
|
@@ -18,33 +18,33 @@ |
18 | |
18 | |
19 | #include <unistd.h> |
19 | #include <unistd.h> |
20 | #include <stdio.h> |
20 | #include <stdio.h> |
21 | #include <sys/stat.h> |
21 | #include <sys/stat.h> |
22 | #include <fcntl.h> |
22 | #include <fcntl.h> |
23 | #include <stddef.h> |
23 | #include <stddef.h> |
24 | #include <stdlib.h> |
24 | #include <stdlib.h> |
25 | #include <stdarg.h> |
25 | #include <stdarg.h> |
26 | #include <string.h> |
26 | #include <string.h> |
27 | #include <errno.h> |
27 | #include <errno.h> |
28 | #include <limits.h> |
28 | #include <limits.h> |
29 | #include <sys/param.h> |
29 | #include <sys/param.h> |
30 | #include <netinet/in.h> |
30 | #include <netinet/in.h> |
31 | #include <sys/types.h> |
31 | #include <sys/types.h> |
32 | #include <dirent.h> |
32 | #include <dirent.h> |
33 | #include <time.h> |
33 | #include <time.h> |
34 | |
34 | #include <regex.h> |
35 | |
35 | |
36 | /* On most systems <limits.h> would have given us this, but |
36 | /* On most systems <limits.h> would have given us this, but |
37 | * not on some systems (e.g. GNU/Hurd). |
37 | * not on some systems (e.g. GNU/Hurd). |
38 | */ |
38 | */ |
39 | #ifndef PATH_MAX |
39 | #ifndef PATH_MAX |
40 | #define PATH_MAX 4096 |
40 | #define PATH_MAX 4096 |
41 | #endif |
41 | #endif |
42 | |
42 | |
43 | #ifdef __GNUC__ |
43 | #ifdef __GNUC__ |
44 | #define NORETURN __attribute__((__noreturn__)) |
44 | #define NORETURN __attribute__((__noreturn__)) |
45 | #else |
45 | #else |
46 | #define NORETURN |
46 | #define NORETURN |
47 | #ifndef __attribute__ |
47 | #ifndef __attribute__ |
48 | #define __attribute__(x) |
48 | #define __attribute__(x) |
49 | #endif |
49 | #endif |
50 | #endif |
50 | #endif |
@@ -143,32 +143,98 @@ static inline int is_null_sha1(const unsigned char *sha1) |
143 | return !memcmp(sha1, null_sha1, 20); |
143 | return !memcmp(sha1, null_sha1, 20); |
144 | } |
144 | } |
145 | static inline int hashcmp(const unsigned char *sha1, const unsigned char *sha2) |
145 | static inline int hashcmp(const unsigned char *sha1, const unsigned char *sha2) |
146 | { |
146 | { |
147 | return memcmp(sha1, sha2, 20); |
147 | return memcmp(sha1, sha2, 20); |
148 | } |
148 | } |
149 | static inline void hashcpy(unsigned char *sha_dst, const unsigned char *sha_src) |
149 | static inline void hashcpy(unsigned char *sha_dst, const unsigned char *sha_src) |
150 | { |
150 | { |
151 | memcpy(sha_dst, sha_src, 20); |
151 | memcpy(sha_dst, sha_src, 20); |
152 | } |
152 | } |
153 | static inline void hashclr(unsigned char *hash) |
153 | static inline void hashclr(unsigned char *hash) |
154 | { |
154 | { |
155 | memset(hash, 0, 20); |
155 | memset(hash, 0, 20); |
156 | } |
156 | } |
157 | |
157 | |
158 | |
158 | |
| |
159 | /* |
| |
160 | * from git:grep.h |
| |
161 | */ |
| |
162 | |
| |
163 | enum grep_pat_token { |
| |
164 | GREP_PATTERN, |
| |
165 | GREP_PATTERN_HEAD, |
| |
166 | GREP_PATTERN_BODY, |
| |
167 | GREP_AND, |
| |
168 | GREP_OPEN_PAREN, |
| |
169 | GREP_CLOSE_PAREN, |
| |
170 | GREP_NOT, |
| |
171 | GREP_OR, |
| |
172 | }; |
| |
173 | |
| |
174 | enum grep_context { |
| |
175 | GREP_CONTEXT_HEAD, |
| |
176 | GREP_CONTEXT_BODY, |
| |
177 | }; |
| |
178 | |
| |
179 | struct grep_pat { |
| |
180 | struct grep_pat *next; |
| |
181 | const char *origin; |
| |
182 | int no; |
| |
183 | enum grep_pat_token token; |
| |
184 | const char *pattern; |
| |
185 | regex_t regexp; |
| |
186 | }; |
| |
187 | |
| |
188 | enum grep_expr_node { |
| |
189 | GREP_NODE_ATOM, |
| |
190 | GREP_NODE_NOT, |
| |
191 | GREP_NODE_AND, |
| |
192 | GREP_NODE_OR, |
| |
193 | }; |
| |
194 | |
| |
195 | struct grep_opt { |
| |
196 | struct grep_pat *pattern_list; |
| |
197 | struct grep_pat **pattern_tail; |
| |
198 | struct grep_expr *pattern_expression; |
| |
199 | int prefix_length; |
| |
200 | regex_t regexp; |
| |
201 | unsigned linenum:1; |
| |
202 | unsigned invert:1; |
| |
203 | unsigned status_only:1; |
| |
204 | unsigned name_only:1; |
| |
205 | unsigned unmatch_name_only:1; |
| |
206 | unsigned count:1; |
| |
207 | unsigned word_regexp:1; |
| |
208 | unsigned fixed:1; |
| |
209 | unsigned all_match:1; |
| |
210 | #define GREP_BINARY_DEFAULT 0 |
| |
211 | #define GREP_BINARY_NOMATCH 1 |
| |
212 | #define GREP_BINARY_TEXT 2 |
| |
213 | unsigned binary:2; |
| |
214 | unsigned extended:1; |
| |
215 | unsigned relative:1; |
| |
216 | unsigned pathname:1; |
| |
217 | int regflags; |
| |
218 | unsigned pre_context; |
| |
219 | unsigned post_context; |
| |
220 | }; |
| |
221 | |
| |
222 | |
| |
223 | extern void compile_grep_patterns(struct grep_opt *opt); |
| |
224 | extern void free_grep_patterns(struct grep_opt *opt); |
159 | |
225 | |
160 | |
226 | |
161 | /* |
227 | /* |
162 | * from git:object.h |
228 | * from git:object.h |
163 | */ |
229 | */ |
164 | |
230 | |
165 | struct object_list { |
231 | struct object_list { |
166 | struct object *item; |
232 | struct object *item; |
167 | struct object_list *next; |
233 | struct object_list *next; |
168 | }; |
234 | }; |
169 | |
235 | |
170 | struct object_refs { |
236 | struct object_refs { |
171 | unsigned count; |
237 | unsigned count; |
172 | struct object *base; |
238 | struct object *base; |
173 | struct object *ref[FLEX_ARRAY]; /* more */ |
239 | struct object *ref[FLEX_ARRAY]; /* more */ |
174 | }; |
240 | }; |
|