6e5e35610b
Implement file IO for applications to facilitate text input/output capturing. Apps can now launch apps and: - Read their stdio output - Write to their stdio input
16 lines
292 B
C
16 lines
292 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#include <app/file.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** @return the AppFileOps used for stream-backed fd table entries (see app_stream_subscribe()). */
|
|
const struct AppFileOps* app_stream_ops(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|