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:

committed by
Junio C Hamano

parent
62e27f273d
commit
49ba83fb67
18
interpolate.h
Normal file
18
interpolate.h
Normal 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 */
|
Reference in New Issue
Block a user