Changeset d2cc7e1 in mainline for uspace/lib/libc/include
- Timestamp:
- 2009-03-21T11:26:31Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a5116db
- Parents:
- 5b8c75a
- Location:
- uspace/lib/libc/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/console.h
r5b8c75a rd2cc7e1 49 49 extern void console_goto(int, int); 50 50 extern void console_putchar(int); 51 extern ssize_t console_write(const char *buf, size_t nbyte); 52 extern void console_putstr(const char *s); 51 53 extern void console_flush(void); 52 54 -
uspace/lib/libc/include/io/stream.h
r5b8c75a rd2cc7e1 45 45 extern ssize_t write_stdout(const void *, size_t); 46 46 extern ssize_t write_stderr(const void *, size_t); 47 extern int flush_stdout(void); 47 48 48 49 #endif -
uspace/lib/libc/include/ipc/console.h
r5b8c75a rd2cc7e1 41 41 CONSOLE_GETKEY = IPC_FIRST_USER_METHOD, 42 42 CONSOLE_PUTCHAR, 43 CONSOLE_WRITE, 43 44 CONSOLE_CLEAR, 44 45 CONSOLE_GOTO, -
uspace/lib/libc/include/ipc/fb.h
r5b8c75a rd2cc7e1 40 40 typedef enum { 41 41 FB_PUTCHAR = IPC_FIRST_USER_METHOD, 42 FB_WRITE, 42 43 FB_CLEAR, 43 44 FB_GET_CSIZE, -
uspace/lib/libc/include/stdio.h
r5b8c75a rd2cc7e1 70 70 extern int puts(const char *); 71 71 extern int putchar(int); 72 extern int fflush(FILE *); 72 73 73 74 extern int printf(const char *, ...);
Note:
See TracChangeset
for help on using the changeset viewer.