home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMIGA PD 1
/
AMIGA-PD-1.iso
/
Programme_zum_Heft
/
Programmieren
/
Kurztests
/
DiceC
/
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