1
0
forked from vitrine/wmaker
Files
wmaker/WINGs/misc.c
2001-04-19 21:12:08 +00:00

19 lines
197 B
C

/* Miscelaneous helper functions */
#include "WINGsP.h"
WMRange
wmkrange(int start, int count)
{
WMRange range;
range.position = start;
range.count = count;
return range;
}