forked from go-vgo/robotgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
1,066 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#ifndef _PORTABLE_SNPRINTF_H_ | ||
#define _PORTABLE_SNPRINTF_H_ | ||
|
||
#define PORTABLE_SNPRINTF_VERSION_MAJOR 2 | ||
#define PORTABLE_SNPRINTF_VERSION_MINOR 2 | ||
|
||
#include "os.h" | ||
#if defined(IS_MACOSX) | ||
#define HAVE_SNPRINTF | ||
#else | ||
#define HAVE_SNPRINTF | ||
#define PREFER_PORTABLE_SNPRINTF | ||
#endif | ||
|
||
#include <stddef.h> | ||
#include <stdarg.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif | ||
|
||
#ifdef HAVE_SNPRINTF | ||
#include <stdio.h> | ||
#else | ||
extern int snprintf(char *, size_t, const char *, /*args*/ ...); | ||
extern int vsnprintf(char *, size_t, const char *, va_list); | ||
#endif | ||
|
||
#if defined(HAVE_SNPRINTF) && defined(PREFER_PORTABLE_SNPRINTF) | ||
extern int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...); | ||
extern int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap); | ||
#define snprintf portable_snprintf | ||
#define vsnprintf portable_vsnprintf | ||
#endif | ||
|
||
extern int asprintf (char **ptr, const char *fmt, /*args*/ ...); | ||
extern int vasprintf (char **ptr, const char *fmt, va_list ap); | ||
extern int asnprintf (char **ptr, size_t str_m, const char *fmt, /*args*/ ...); | ||
extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap); | ||
|
||
#endif | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
Oops, something went wrong.