home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 10
/
Fresh_Fish_10_2352.bin
/
new
/
dev
/
c
/
dice
/
include
/
lib
/
bcpl.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-01
|
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