zephyr/lib/libc/minimal/source/stdout/stdout_console.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

82 lines
1.2 KiB
C

/* stdout_console.c */
/*
* Copyright (c) 2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdio.h>
static int _stdout_hook_default(int c)
{
(void)(c); /* Prevent warning about unused argument */
return EOF;
}
static int (*_stdout_hook)(int) = _stdout_hook_default;
void __stdout_hook_install(int (*hook)(int))
{
_stdout_hook = hook;
}
int fputc(int c, FILE *stream)
{
return (stdout == stream) ? _stdout_hook(c) : EOF;
}
int fputs(const char *_Restrict string, FILE *_Restrict stream)
{
if (stream != stdout) {
return EOF;
}
while (*string != '\0') {
if (_stdout_hook((int)*string) == EOF) {
return EOF;
}
string++;
}
return 0;
}
size_t fwrite(const void *_Restrict ptr, size_t size, size_t nitems,
FILE *_Restrict stream)
{
size_t i;
size_t j;
const unsigned char *p;
if ((stream != stdout) || (nitems == 0) || (size == 0)) {
return 0;
}
p = ptr;
i = nitems;
do {
j = size;
do {
if (_stdout_hook((int) *p) == EOF)
goto done;
j--;
} while (j > 0);
i--;
} while (i > 0);
done:
return (nitems - i);
}
int puts(const char *string)
{
if (fputs(string, stdout) == EOF) {
return EOF;
}
return (_stdout_hook((int) '\n') == EOF) ? EOF : 0;
}