Changeset ebb1489 in mainline for uspace/lib/c/include/dbgcon.h
- Timestamp:
- 2024-10-13T08:23:40Z (12 months ago)
- Parents:
- 2a0c827c (diff), b3b79981 (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. - git-author:
- boba-buba <120932204+boba-buba@…> (2024-10-13 08:23:40)
- git-committer:
- GitHub <noreply@…> (2024-10-13 08:23:40)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/dbgcon.h
r2a0c827c rebb1489 1 1 /* 2 * Copyright (c) 20 13Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup ata_bd29 /** @addtogroup libc 30 30 * @{ 31 31 */ 32 /** @file ATA driver main module32 /** @file 33 33 */ 34 34 35 #ifndef _ _ATA_MAIN_H__36 #define _ _ATA_MAIN_H__35 #ifndef _LIBC_DBGCON_H_ 36 #define _LIBC_DBGCON_H_ 37 37 38 #include "ata_bd.h"38 #include <stdbool.h> 39 39 40 extern errno_t ata_fun_create(disk_t *); 41 extern errno_t ata_fun_remove(disk_t *); 42 extern errno_t ata_fun_unbind(disk_t *); 40 extern bool dbgcon_enable(void); 43 41 44 42 #endif
Note:
See TracChangeset
for help on using the changeset viewer.