mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 14:56:08 +00:00

Change define guards from NEOVIM_XXX_H to NVIM_XXX_H: - Change header files. - Change clint correct guard name calculation.
17 lines
426 B
C
17 lines
426 B
C
#ifndef NVIM_OS_RSTREAM_DEFS_H
|
|
#define NVIM_OS_RSTREAM_DEFS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct rstream RStream;
|
|
|
|
/// Type of function called when the RStream receives data
|
|
///
|
|
/// @param rstream The RStream instance
|
|
/// @param data State associated with the RStream instance
|
|
/// @param eof If the stream reached EOF.
|
|
typedef void (*rstream_cb)(RStream *rstream, void *data, bool eof);
|
|
|
|
#endif // NVIM_OS_RSTREAM_DEFS_H
|
|
|