mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 04:20:27 +01:00
19 lines
197 B
C
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;
|
|
}
|
|
|
|
|