mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
13 lines
225 B
Bash
Executable file
13 lines
225 B
Bash
Executable file
#!/bin/sh
|
|
astyle \
|
|
--mode=cs \
|
|
--style=java \
|
|
--indent=spaces=2 \
|
|
--indent-switches \
|
|
--indent-namespaces \
|
|
--pad=oper \
|
|
--unpad=paren \
|
|
--pad=paren-out \
|
|
--convert-tabs \
|
|
--suffix=none \
|
|
$* > /dev/null
|