1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-02 20:04:15 +01:00

Forgot to add misc.c to the cvs tree

This commit is contained in:
dan
2001-04-19 21:12:08 +00:00
parent b061bf9832
commit 656a1c17e4

18
WINGs/misc.c Normal file
View File

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