diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-21 00:00:47 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-24 23:50:43 -0700 |
commit | 6b5ee137e56af8093391411389dd4b18416707ec (patch) | |
tree | ca7f7ea853bc836e1b41a52301884f3d41708c2a /cache.h | |
parent | dbc37438687e110697574d175e4eca5f9cbeae81 (diff) | |
download | git-6b5ee137e56af8093391411389dd4b18416707ec.tar.gz git-6b5ee137e56af8093391411389dd4b18416707ec.tar.xz |
Diff clean-up.
This is a long overdue clean-up to the code for parsing and passing
diff options. It also tightens some constness issues.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -143,9 +143,9 @@ extern char *get_graft_file(void); #define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES" -extern const char **get_pathspec(const char *prefix, char **pathspec); +extern const char **get_pathspec(const char *prefix, const char **pathspec); extern const char *setup_git_directory(void); -extern char *prefix_path(const char *prefix, int len, char *path); +extern const char *prefix_path(const char *prefix, int len, const char *path); #define alloc_nr(x) (((x)+16)*3/2) @@ -158,7 +158,7 @@ extern int cache_name_pos(const char *name, int namelen); #define ADD_CACHE_SKIP_DFCHECK 4 /* Ok to skip DF conflict checks */ extern int add_cache_entry(struct cache_entry *ce, int option); extern int remove_cache_entry_at(int pos); -extern int remove_file_from_cache(char *path); +extern int remove_file_from_cache(const char *path); extern int ce_same_name(struct cache_entry *a, struct cache_entry *b); extern int ce_match_stat(struct cache_entry *ce, struct stat *st); extern int ce_modified(struct cache_entry *ce, struct stat *st); |