diff options
author | Alex Riesen <fork0@t-online.de> | 2006-09-25 23:19:00 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-25 22:11:26 -0700 |
commit | 4dafd7d2444051fe0e1eb17e9ded503ad7d9dd25 (patch) | |
tree | c352281a2a52f18b801961f8c93241990dd5e755 /interpolate.h | |
parent | e8daf78a00fc618f4b8b5b6253580226560f7dec (diff) | |
download | git-4dafd7d2444051fe0e1eb17e9ded503ad7d9dd25.tar.gz |
Use const for interpolate arguments
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'interpolate.h')
-rw-r--r-- | interpolate.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/interpolate.h b/interpolate.h index 00c63a5622..d16f9244f3 100644 --- a/interpolate.h +++ b/interpolate.h @@ -5,6 +5,11 @@ #ifndef INTERPOLATE_H #define INTERPOLATE_H +/* + * Convert a NUL-terminated string in buffer orig, + * performing substitutions on %-named sub-strings from + * the interpretation table. + */ struct interp { char *name; @@ -12,7 +17,7 @@ struct interp { }; extern int interpolate(char *result, int reslen, - char *orig, - struct interp *interps, int ninterps); + const char *orig, + const struct interp *interps, int ninterps); #endif /* INTERPOLATE_H */ |