home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
database
/
btrees
/
btgetsp.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1984-12-14
|
270 b
|
15 lines
/* btgetsp */
#include <stdio.h>
#include <btextern.h>
int btgetsp (filhand)
int filhand;
/* gets a node number for a new node */
{
ip2 = btfilar[filhand].infobuf + 2;
return (++*ip2); /* increment the current value */
}
/* end of btgetsp */