home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Internet Tools 1993 July
/
Internet Tools.iso
/
RockRidge
/
mail
/
mmdf
/
mmdf-IIb.43
/
lib
/
util
/
sptotab.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-02-01
|
338 b
|
21 lines
#
sptotab (pcurcol, firstab, tabinc)
int pcurcol,
firstab,
tabinc;
{
register short
curcol,
diff;
curcol = pcurcol;
firstab++;
if (curcol <= firstab)
return (firstab - curcol);
else
return ((diff = (--curcol % tabinc)) == 0
? 0
: (tabinc - diff));
}