summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-11-18 22:24:33 +0900
committerMichele Calgaro <[email protected]>2024-11-18 22:24:33 +0900
commit3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch)
tree2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h
parentff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff)
downloadextra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.tar.gz
extra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.zip
Remove uncrustify-trinity.HEADmaster
It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h
deleted file mode 100644
index 6cae2ff6..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unc_tools.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/**
- * @file unc_tools.h
- *
- * @author Guy Maurel
- * October 2015, 2023
- * @license GPL v2+
- */
-
-#ifndef UNC_TOOLS_H_INCLUDED
-#define UNC_TOOLS_H_INCLUDED
-
-#include "prototypes.h"
-
-#if defined DEBUG
-#define PROT_THE_LINE prot_the_line(__func__, __LINE__, 0, 0);
-#else
-#define PROT_THE_LINE /* do nothing */;
-#endif
-
-extern char dump_file_name[80];
-
-void set_dump_file_name(const char *name);
-
-
-void prot_the_line(const char *func_name, int theLine, unsigned int actual_line, size_t partNumber);
-
-
-void prot_the_line_pc(Chunk *pc_sub, const char *func_name, int theLine, unsigned int actual_line, size_t partNumber);
-
-
-void prot_all_lines(const char *func_name, int theLine);
-
-
-void prot_the_source(int theLine);
-
-
-void prot_the_columns(int theLine, unsigned int actual_line);
-
-
-void prot_the_OrigCols(int theLine, unsigned int actual_line);
-
-
-void rebuild_the_line(int theLine, unsigned int actual_line, bool increment = true);
-
-
-void examine_Data(const char *func_name, int theLine, int what);
-
-
-//! dump the chunk list to a file
-void dump_out(unsigned int type);
-
-
-//! create chunk list from a file
-void dump_in(unsigned int type);
-
-
-size_t get_A_Number();
-
-
-void dump_keyword_for_lang(size_t language_count, chunk_tag_t *keyword_for_lang);
-
-//! This save the next formatting step to a file
-void dump_step(const char *filename, const char *description);
-
-
-#endif /* UNC_TOOLS_H_INCLUDED */