Welcome to mirror list, hosted at ThFree Co, Russian Federation.

interpolate.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00c63a5622da8545f46fb6b170951b224679bc73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 */