mirror of
https://github.com/apache/nuttx.git
synced 2026-05-24 07:46:16 +08:00
libc/stream: Rename [lib_stream_](put|get) to [lib_stream_](putc|getc)
to make the naming style consistent with each other Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Petro Karashchenko
parent
4be9ec774b
commit
055f1f33eb
@@ -87,7 +87,7 @@ int obstack_vprintf(FAR struct obstack *h, FAR const char *fmt, va_list ap)
|
||||
{
|
||||
struct obstack_stream outstream;
|
||||
|
||||
outstream.public.put = obstack_putc;
|
||||
outstream.public.putc = obstack_putc;
|
||||
outstream.public.puts = obstack_puts;
|
||||
outstream.public.flush = lib_noflush;
|
||||
outstream.public.nput = 0;
|
||||
|
||||
Reference in New Issue
Block a user