Design Pattern Examples
Overview of object-oriented design patterns
helpers/formatstring.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __FORMATSTRING_H__
8#define __FORMATSTRING_H__
9
20char *formatstring(const char *format, ...);
21
22#endif // __FORMATSTRING_H__
char * formatstring(const char *format,...)
Use the given string and arguments to return a buffer containing the formatted string....
Definition: formatstring.c:15