From 5bd5b68b5950589b9e597f7ef32741c01f48328b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 5 Jan 2009 15:52:02 +0000 Subject: [PATCH] runastyle: Added script for running "astyle" with the options I have chosen against all cpp and h files --- runastyle | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 runastyle diff --git a/runastyle b/runastyle new file mode 100755 index 000000000..61e1f857c --- /dev/null +++ b/runastyle @@ -0,0 +1,4 @@ +#!/bin/bash + +astyle --style=ansi --min-conditional-indent=0 --pad=oper --unpad=paren *.cpp +astyle --style=ansi --min-conditional-indent=0 --pad=oper --unpad=paren *.h