home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
languages
/
dice_443
/
dice.lzh
/
include
/
lib
/
bcpl.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-02
|
249b
|
16 lines
/*
* LIB/BCPL.H
*
* (c)Copyright 1990, Matthew Dillon, All Rights Reserved
*/
#ifndef _LIB_BCPL_H
#define _LIB_BCPL_H
#define BTOC(bptr, type) ((type *)((long)(bptr) << 2))
#define CTOB(cptr) ((BPTR)((unsigned long)(cptr) >> 2))
#endif