Change to the linux kernel coding style
[wmaker-crm.git] / WINGs / misc.c
1
2 /* Miscelaneous helper functions */
3
4 #include "WINGsP.h"
5
6 WMRange wmkrange(int start, int count)
7 {
8         WMRange range;
9
10         range.position = start;
11         range.count = count;
12
13         return range;
14 }