Image Demosaicking with Contour Stencils
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
temsub.h
Go to the documentation of this file.
1 
15 #ifndef _TEMSUB_H_
16 #define _TEMSUB_H_
17 
18 #include <stdarg.h>
19 
20 int FillTemplate(const char *OutputFilename, const char *TemplateFilename,
21  char *Keys[], char *Subs[]);
22 
23 char **AddPair(char **Keys[], char **Subs[], char *Key, char *SubFormat, ...);
24 void StringAppend(char **Str, const char *Format, ...);
25 void VStringAppend(char **Str, const char *Format, va_list Args);
26 void FreeStringArray(char *Strs[]);
27 
28 #endif /* _TEMSUB_H_ */