mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
for arq in `git ls-files *.c`; do
echo $arq;
indent -linux -l115 $arq;
done
The different line break at 115 columns is because
I use a widescreen monitor :-)
15 lines
182 B
C
15 lines
182 B
C
|
|
/* Miscelaneous helper functions */
|
|
|
|
#include "WINGsP.h"
|
|
|
|
WMRange wmkrange(int start, int count)
|
|
{
|
|
WMRange range;
|
|
|
|
range.position = start;
|
|
range.count = count;
|
|
|
|
return range;
|
|
}
|