mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00

Closes #6463 refactor/single-include: file_search.h Closes #6455 refactor/single-include: hardcopy.h Closes #6457 refactor/single-include: if_cscope.h Closes #6458 refactor/single-include: mark.h Closes #6461 refactor/single-include: mbyte.h Closes #6462 refactor/single-include: memline.h Closes #6464 refactor/single-include: menu.h Closes #6468 refactor/single-include: ops.h Closes #6470
18 lines
489 B
C
18 lines
489 B
C
#ifndef NVIM_FILE_SEARCH_H
|
|
#define NVIM_FILE_SEARCH_H
|
|
|
|
#include <stdlib.h> // for size_t
|
|
|
|
#include "nvim/types.h" // for char_u
|
|
#include "nvim/globals.h" // for CdScope
|
|
|
|
/* Flags for find_file_*() functions. */
|
|
#define FINDFILE_FILE 0 /* only files */
|
|
#define FINDFILE_DIR 1 /* only directories */
|
|
#define FINDFILE_BOTH 2 /* files and directories */
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "file_search.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_FILE_SEARCH_H
|