mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Merge remote-tracking branch 'whot/for-keith'
This commit is contained in:
@@ -66,4 +66,16 @@ _X_ATTRIBUTE_PRINTF(2, 0);
|
||||
#define vasprintf Xvasprintf
|
||||
#endif
|
||||
|
||||
/*
|
||||
* These functions provide a portable implementation of the linux kernel
|
||||
* scnprintf & vscnprintf routines that return the number of bytes actually
|
||||
* copied during a snprintf, (excluding the final '\0').
|
||||
*/
|
||||
extern _X_EXPORT int
|
||||
Xscnprintf(char *s, int n, const char * _X_RESTRICT_KYWD fmt, ...)
|
||||
_X_ATTRIBUTE_PRINTF(3,4);
|
||||
extern _X_EXPORT int
|
||||
Xvscnprintf(char *s, int n, const char * _X_RESTRICT_KYWD fmt, va_list va)
|
||||
_X_ATTRIBUTE_PRINTF(3,0);
|
||||
|
||||
#endif /* XPRINTF_H */
|
||||
|
||||
Reference in New Issue
Block a user