From 656a1c17e4cb2f1234723a8a8e5a46e32f34c683 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 19 Apr 2001 21:12:08 +0000 Subject: [PATCH] Forgot to add misc.c to the cvs tree --- WINGs/misc.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 WINGs/misc.c diff --git a/WINGs/misc.c b/WINGs/misc.c new file mode 100644 index 00000000..4abfe5e5 --- /dev/null +++ b/WINGs/misc.c @@ -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; +} + +