Files
neovim/src/nvim/memfile.h
Eliseo Martínez 8fb4097fc6 Review: Remove long_u: memfile: Cleanup: Comments.
- Restyle comments (/// when appropiate, // otherwise).
- Improve comments (add new comments, augment/clarify existing ones).
2014-11-06 22:53:40 +01:00

17 lines
505 B
C

#ifndef NVIM_MEMFILE_H
#define NVIM_MEMFILE_H
#include "nvim/buffer_defs.h"
#include "nvim/memfile_defs.h"
/// flags for mf_sync()
#define MFS_ALL 1 /// also sync blocks with negative numbers
#define MFS_STOP 2 /// stop syncing when a character is available
#define MFS_FLUSH 4 /// flushed file to disk
#define MFS_ZERO 8 /// only write block 0
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "memfile.h.generated.h"
#endif
#endif // NVIM_MEMFILE_H