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