File: sprintf.c

package info (click to toggle)
optee-os 4.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,960 kB
  • sloc: ansic: 444,388; asm: 12,922; python: 3,719; makefile: 1,681; sh: 238
file content (40 lines) | stat: -rw-r--r-- 647 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// SPDX-License-Identifier: BSD-2-Clause
/*
 * Copyright (c) 2020, Huawei Technologies Co., Ltd
 */

#include <compiler.h>
#include <printk.h>
#include <stdio.h>
#include <stdlib.h>

int sprintf(char *str, const char *fmt, ...)
{
	int retval;
	va_list ap;

	va_start(ap, fmt);
	retval = __vsprintf(str, fmt, ap);
	va_end(ap);

	return retval;
}

int __sprintf_chk(char *str, int flag __unused, size_t slen,
		  const char *fmt, ...)
{
	int retval;
	va_list ap;

	if (slen == 0)
		abort();

	va_start(ap, fmt);
	retval = __vsnprintf(str, slen, fmt, ap, false);
	va_end(ap);

	if (retval > 0 && (size_t)retval >= slen)
		abort();

	return retval;
}