repo.or.cz
/
wmaker-crm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated french translations
[wmaker-crm.git]
/
WINGs
/
misc.c
blob
4abfe5e5b4a83a5ddf8e6abadfe2f2f000e5b219
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