Changeset a635535 in mainline for uspace/lib/c
- Timestamp:
- 2023-11-30T20:29:05Z (20 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 1be9ee0
- Parents:
- cad7b7e
- Location:
- uspace/lib/c
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/chargrid.c
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ -
uspace/lib/c/include/io/charfield.h
rcad7b7e ra635535 28 28 */ 29 29 30 /** @addtogroup libc 30 /** @addtogroup libconsole 31 31 * @{ 32 32 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IO_CHARFIELD_H_37 #define _LIBC _IO_CHARFIELD_H_36 #ifndef _LIBCONSOLE_IO_CHARFIELD_H_ 37 #define _LIBCONSOLE_IO_CHARFIELD_H_ 38 38 39 39 #include <stdbool.h> -
uspace/lib/c/include/io/chargrid.h
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IO_CHARGRID_H_37 #define _LIBC _IO_CHARGRID_H_36 #ifndef _LIBCONSOLE_IO_CHARGRID_H_ 37 #define _LIBCONSOLE_IO_CHARGRID_H_ 38 38 39 39 #include <io/charfield.h> -
uspace/lib/c/include/io/color.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 08Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_COLOR_H_36 #define _LIBC _IO_COLOR_H_35 #ifndef _LIBCONSOLE_IO_COLOR_H_ 36 #define _LIBCONSOLE_IO_COLOR_H_ 37 37 38 38 typedef enum { -
uspace/lib/c/include/io/concaps.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 12Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc ipc29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONCAPS_H_36 #define _LIBC _IO_CONCAPS_H_35 #ifndef _LIBCONSOLE_IO_CONCAPS_H_ 36 #define _LIBCONSOLE_IO_CONCAPS_H_ 37 37 38 38 typedef enum { -
uspace/lib/c/include/io/output.h
rcad7b7e ra635535 38 38 #include <ipc/output.h> 39 39 #include <io/chargrid.h> 40 #include <io/console.h> 40 #include <io/concaps.h> 41 #include <io/style.h> 41 42 42 43 extern errno_t output_yield(async_sess_t *); -
uspace/lib/c/meson.build
rcad7b7e ra635535 115 115 'generic/io/vprintf.c', 116 116 'generic/io/vsnprintf.c', 117 'generic/io/con_srv.c',118 'generic/io/console.c',119 117 'generic/io/table.c', 120 118 'generic/irq.c',
Note:
See TracChangeset
for help on using the changeset viewer.