forked from Lainports/freebsd-ports
The goals of this project are simple: Create a highly configurable, easily modifiable source code beautifier. What it does: * Ident code, aligning on parens, assignments, etc * Align on '=' and variable definitions * Align structure initializers * Align #define stuff * Align backslash-newline stuff * Reformat comments (a little bit) * Fix inter-character spacing * Add or remove parens on return statements * Add or remove braces on single-statement if/do/while/for statements * Highly configurable - 118 configurable options as of version 0.0.15 WWW: http://uncrustify.sourceforge.net PR: ports/100604 Submitted by: Dmitry Marakasov <amdmi3 at mail.ru>
10 lines
247 B
C++
10 lines
247 B
C++
--- src/uncrustify.cpp.orig Wed Jul 19 20:39:15 2006
|
|
+++ src/uncrustify.cpp Wed Jul 19 20:39:48 2006
|
|
@@ -15,6 +15,7 @@
|
|
#include "logger.h"
|
|
#include "log_levels.h"
|
|
|
|
+#include <libgen.h>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|