mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
15 lines
331 B
C
15 lines
331 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (C) 2022 Sean Anderson <sean.anderson@seco.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef _SEMIHOSTING_H
|
||
|
#define _SEMIHOSTING_H
|
||
|
|
||
|
long smh_open(const char *fname, char *modestr);
|
||
|
long smh_read(long fd, void *memp, size_t len);
|
||
|
long smh_close(long fd);
|
||
|
long smh_flen(long fd);
|
||
|
|
||
|
#endif /* _SEMIHOSTING_H */
|