diff options
author | Jon Loeliger <jdl@jdl.com> | 2006-09-19 20:31:51 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-20 11:15:39 -0700 |
commit | 49ba83fb67d9e447b86953965ce5f949c6a93b81 (patch) | |
tree | 94b3f1bd68329ca9c7d61b572c4283aafc04f2aa /interpolate.h | |
parent | 62e27f273d66afa996cb7aee6cdb25fbedc053f6 (diff) | |
download | git-49ba83fb67d9e447b86953965ce5f949c6a93b81.tar.gz git-49ba83fb67d9e447b86953965ce5f949c6a93b81.tar.xz |
Add virtualization support to git-daemon
Signed-off-by: Jon Loeliger
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'interpolate.h')
-rw-r--r-- | interpolate.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/interpolate.h b/interpolate.h new file mode 100644 index 000000000..00c63a562 --- /dev/null +++ b/interpolate.h @@ -0,0 +1,18 @@ +/* + * Copyright 2006 Jon Loeliger + */ + +#ifndef INTERPOLATE_H +#define INTERPOLATE_H + + +struct interp { + char *name; + char *value; +}; + +extern int interpolate(char *result, int reslen, + char *orig, + struct interp *interps, int ninterps); + +#endif /* INTERPOLATE_H */ |