Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
2 |
mjames |
1 |
#ifndef _SPLICE_H_ |
|
|
2 |
#define _SPLICE_H_ |
|
|
3 |
|
|
|
4 |
#define SPLICE(a,b) SPLICE_1(a,b) |
|
|
5 |
#define SPLICE_1(a,b) SPLICE_2(a,b) |
|
|
6 |
#define SPLICE_2(a,b) a##b |
|
|
7 |
|
|
|
8 |
#endif /* _SPLICE_H_ */ |