23 lines
428 B
C++
23 lines
428 B
C++
/* SPDX-License-Identifier: Apache-2.0
|
|
* (c) 2025, Konstantin Demin
|
|
*/
|
|
|
|
#ifndef INCLUDE_LIST_MODE_HH
|
|
#define INCLUDE_LIST_MODE_HH 1
|
|
|
|
#include "overlay-common.hh"
|
|
|
|
enum struct print_mode : unsigned int {
|
|
normal = 0,
|
|
zero,
|
|
|
|
// TODO
|
|
/* shell_escape, */
|
|
|
|
_default = normal,
|
|
};
|
|
|
|
void print_path(print_mode mode, const ovl_path_t * root, const ovl_path_t * subpath, const ovl_name_t * name);
|
|
|
|
#endif /* INCLUDE_LIST_MODE_HH */
|