Add virtualization support to git-daemon

Signed-off-by: Jon Loeliger
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Jon Loeliger
2006-09-19 20:31:51 -05:00
committed by Junio C Hamano
parent 62e27f273d
commit 49ba83fb67
5 changed files with 229 additions and 11 deletions

18
interpolate.h Normal file
View File

@ -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 */