zephyr/lib/libc/minimal/source/stdout/sprintf.c
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
Replace the existing Apache 2.0 boilerplate header with an SPDX tag
throughout the zephyr code tree. This patch was generated via a
script run over the master branch.

Also updated doc/porting/application.rst that had a dependency on
line numbers in a literal include.

Manually updated subsys/logging/sys_log.c that had a malformed
header in the original file.  Also cleanup several cases that already
had a SPDX tag and we either got a duplicate or missed updating.

Jira: ZEP-1457

Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-19 03:50:58 +00:00

103 lines
1.8 KiB
C

/* sprintf.c */
/*
* Copyright (c) 1997-2010, 2013-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdarg.h>
#include <stdio.h>
extern int _prf(int (*func)(), void *dest,
const char *format, va_list vargs);
struct emitter {
char *ptr;
int len;
};
static int sprintf_out(int c, struct emitter *p)
{
if (p->len > 1) { /* need to reserve a byte for EOS */
*(p->ptr) = c;
p->ptr += 1;
p->len -= 1;
}
return 0; /* indicate keep going so we get the total count */
}
int snprintf(char *_Restrict s, size_t len, const char *_Restrict format, ...)
{
va_list vargs;
struct emitter p;
int r;
char dummy;
if (len == 0) {
s = &dummy; /* write final NUL to dummy, can't change *s */
}
p.ptr = s;
p.len = (int) len;
va_start(vargs, format);
r = _prf(sprintf_out, (void *) (&p), format, vargs);
va_end(vargs);
*(p.ptr) = 0;
return r;
}
int sprintf(char *_Restrict s, const char *_Restrict format, ...)
{
va_list vargs;
struct emitter p;
int r;
p.ptr = s;
p.len = (int) 0x7fffffff; /* allow up to "maxint" characters */
va_start(vargs, format);
r = _prf(sprintf_out, (void *) (&p), format, vargs);
va_end(vargs);
*(p.ptr) = 0;
return r;
}
int vsnprintf(char *_Restrict s, size_t len, const char *_Restrict format, va_list vargs)
{
struct emitter p;
int r;
char dummy;
if (len == 0) {
s = &dummy; /* write final NUL to dummy, can't change * *s */
}
p.ptr = s;
p.len = (int) len;
r = _prf(sprintf_out, (void *) (&p), format, vargs);
*(p.ptr) = 0;
return r;
}
int vsprintf(char *_Restrict s, const char *_Restrict format, va_list vargs)
{
struct emitter p;
int r;
p.ptr = s;
p.len = (int) 0x7fffffff; /* allow up to "maxint" characters */
r = _prf(sprintf_out, (void *) (&p), format, vargs);
*(p.ptr) = 0;
return r;
}