pathspec.h: clean up "extern" in function declarations
"extern" on functions is not required and the trend has been removing it from header files. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
67022e0214
commit
93e23798ef
24
pathspec.h
24
pathspec.h
@ -80,13 +80,13 @@ struct pathspec {
|
|||||||
* Any arguments used are copied. It is safe for the caller to modify
|
* Any arguments used are copied. It is safe for the caller to modify
|
||||||
* or free 'prefix' and 'args' after calling this function.
|
* or free 'prefix' and 'args' after calling this function.
|
||||||
*/
|
*/
|
||||||
extern void parse_pathspec(struct pathspec *pathspec,
|
void parse_pathspec(struct pathspec *pathspec,
|
||||||
unsigned magic_mask,
|
unsigned magic_mask,
|
||||||
unsigned flags,
|
unsigned flags,
|
||||||
const char *prefix,
|
const char *prefix,
|
||||||
const char **args);
|
const char **args);
|
||||||
extern void copy_pathspec(struct pathspec *dst, const struct pathspec *src);
|
void copy_pathspec(struct pathspec *dst, const struct pathspec *src);
|
||||||
extern void clear_pathspec(struct pathspec *);
|
void clear_pathspec(struct pathspec *);
|
||||||
|
|
||||||
static inline int ps_strncmp(const struct pathspec_item *item,
|
static inline int ps_strncmp(const struct pathspec_item *item,
|
||||||
const char *s1, const char *s2, size_t n)
|
const char *s1, const char *s2, size_t n)
|
||||||
@ -106,10 +106,10 @@ static inline int ps_strcmp(const struct pathspec_item *item,
|
|||||||
return strcmp(s1, s2);
|
return strcmp(s1, s2);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void add_pathspec_matches_against_index(const struct pathspec *pathspec,
|
void add_pathspec_matches_against_index(const struct pathspec *pathspec,
|
||||||
const struct index_state *istate,
|
const struct index_state *istate,
|
||||||
char *seen);
|
char *seen);
|
||||||
extern char *find_pathspecs_matching_against_index(const struct pathspec *pathspec,
|
char *find_pathspecs_matching_against_index(const struct pathspec *pathspec,
|
||||||
const struct index_state *istate);
|
const struct index_state *istate);
|
||||||
|
|
||||||
#endif /* PATHSPEC_H */
|
#endif /* PATHSPEC_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user