forked from troglobit/snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cast.h
28 lines (24 loc) · 1.27 KB
/
cast.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
** public domain demo by Bob Stout
*/
#ifndef CAST__H
#define CAST__H
#define CAST(new_type,old_object) (*((new_type *)(&(old_object))))
#if 0
*************************************************************************
* *
* /* Example of CAST macro at work */ *
* *
* union { *
* char ch[4]; *
* int i[2]; *
* } my_union; *
* *
* long longvar; *
* *
* longvar = (long)my_union; /* Illegal cast */ *
* longvar = CAST(long, my_union); /* Legal cast */ *
* *
*************************************************************************
#endif /* 0 */
#endif /* CAST__H */