~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to WINGs/misc.c

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* Miscelaneous helper functions */
 
3
 
 
4
#include "WINGsP.h"
 
5
 
 
6
 
 
7
WMRange
 
8
wmkrange(int start, int count)
 
9
{
 
10
    WMRange range;
 
11
 
 
12
    range.position = start;
 
13
    range.count = count;
 
14
 
 
15
    return range;
 
16
}
 
17
 
 
18