1
0

initial commit

This commit is contained in:
2025-05-27 11:36:06 +03:00
commit 4ba42acfea
14 changed files with 1584 additions and 0 deletions

22
print.hh Normal file
View File

@@ -0,0 +1,22 @@
/* 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 */