Changeset 46c20c8 in mainline for uspace/lib/c/include/device/char.h
- Timestamp:
- 2010-11-26T20:08:10Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45df59a
- Parents:
- fb150d78 (diff), ffdd2b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/device/char.h
rfb150d78 r46c20c8 1 1 /* 2 * Copyright (c) 20 06 Martin Decky2 * Copyright (c) 2010 Lenka Trochtova 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup generic29 /** @addtogroup libc 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef BOOT_PRINTF_H_36 #define BOOT_PRINTF_H_35 #ifndef LIBC_DEVICE_HW_RES_H_ 36 #define LIBC_DEVICE_HW_RES_H_ 37 37 38 #define INT8 1 39 #define INT16 2 40 #define INT32 4 41 #define INT64 8 38 typedef enum { 39 CHAR_READ_DEV = 0, 40 CHAR_WRITE_DEV 41 } hw_res_funcs_t; 42 42 43 extern void puts(const char *str); 44 extern void printf(const char *fmt, ...); 45 46 extern void write(const char *str, const int len); 43 ssize_t read_dev(int dev_phone, void *buf, size_t len); 44 ssize_t write_dev(int dev_phone, void *buf, size_t len); 47 45 48 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.