Changeset 10fc93c in mainline


Ignore:
Timestamp:
2023-12-04T19:08:00Z (5 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/simplify-dev-export
Children:
4f6368c
Parents:
6cef8d6a
Message:

Move charfield/chargrid/color/concaps to liboutput

Location:
uspace/lib
Files:
4 edited
5 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/meson.build

    r6cef8d6a r10fc93c  
    104104        'generic/io/asprintf.c',
    105105        'generic/io/io.c',
    106         'generic/io/chargrid.c',
    107106        'generic/io/printf.c',
    108107        'generic/io/log.c',
  • uspace/lib/console/meson.build

    r6cef8d6a r10fc93c  
    2727#
    2828
    29 deps = [ 'input' ]
     29deps = [ 'input', 'output' ]
    3030src = files(
    3131        'src/con_srv.c',
  • uspace/lib/meson.build

    r6cef8d6a r10fc93c  
    5454
    5555        'input',
     56        'output',
    5657        'console',
    5758        'device',
     
    7879        'nettl',
    7980        'ofw',
    80         'output',
    8181        'pcm',
    8282        'pcut',
  • uspace/lib/output/include/io/charfield.h

    r6cef8d6a r10fc93c  
    2828 */
    2929
    30 /** @addtogroup libc
     30/** @addtogroup liboutput
    3131 * @{
    3232 */
     
    3434 */
    3535
    36 #ifndef _LIBC_IO_CHARFIELD_H_
    37 #define _LIBC_IO_CHARFIELD_H_
     36#ifndef _LIBOUTPUT_IO_CHARFIELD_H_
     37#define _LIBOUTPUT_IO_CHARFIELD_H_
    3838
    3939#include <stdbool.h>
  • uspace/lib/output/include/io/chargrid.h

    r6cef8d6a r10fc93c  
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup liboutput
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef _LIBC_IO_CHARGRID_H_
    37 #define _LIBC_IO_CHARGRID_H_
     36#ifndef _LIBOUTPUT_IO_CHARGRID_H_
     37#define _LIBOUTPUT_IO_CHARGRID_H_
    3838
    3939#include <io/charfield.h>
  • uspace/lib/output/include/io/color.h

    r6cef8d6a r10fc93c  
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup liboutput
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef _LIBC_IO_COLOR_H_
    36 #define _LIBC_IO_COLOR_H_
     35#ifndef _LIBOUTPUT_IO_COLOR_H_
     36#define _LIBOUTPUT_IO_COLOR_H_
    3737
    3838typedef enum {
  • uspace/lib/output/include/io/concaps.h

    r6cef8d6a r10fc93c  
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup liboutput
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef _LIBC_IO_CONCAPS_H_
    36 #define _LIBC_IO_CONCAPS_H_
     35#ifndef _LIBOUTPUT_IO_CONCAPS_H_
     36#define _LIBOUTPUT_IO_CONCAPS_H_
    3737
    3838typedef enum {
  • uspace/lib/output/meson.build

    r6cef8d6a r10fc93c  
    2828
    2929src = files(
     30        'src/chargrid.c',
    3031        'src/output.c',
    3132)
  • uspace/lib/output/src/chargrid.c

    r6cef8d6a r10fc93c  
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup liboutput
    3030 * @{
    3131 */
Note: See TracChangeset for help on using the changeset viewer.