Nut/OS  4.10.3
API Reference
tpaste.h
Go to the documentation of this file.
00001 
00037 /* This header file is part of the ATMEL AVR-UC3-SoftwareFramework-1.7.0 Release */
00038 
00039 /*This file is prepared for Doxygen automatic documentation generation.*/
00052 /* Copyright (c) 2009 Atmel Corporation. All rights reserved.
00053  *
00054  * Redistribution and use in source and binary forms, with or without
00055  * modification, are permitted provided that the following conditions are met:
00056  *
00057  * 1. Redistributions of source code must retain the above copyright notice, this
00058  * list of conditions and the following disclaimer.
00059  *
00060  * 2. Redistributions in binary form must reproduce the above copyright notice,
00061  * this list of conditions and the following disclaimer in the documentation
00062  * and/or other materials provided with the distribution.
00063  *
00064  * 3. The name of Atmel may not be used to endorse or promote products derived
00065  * from this software without specific prior written permission.
00066  *
00067  * 4. This software may only be redistributed and used in connection with an Atmel
00068  * AVR product.
00069  *
00070  * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
00071  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
00072  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
00073  * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
00074  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
00075  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00076  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
00077  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00078  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00079  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
00080  *
00081  */
00082 
00083 #ifndef _TPASTE_H_
00084 #define _TPASTE_H_
00085 
00086 
00097 
00098 #define TPASTE2( a, b)                            a##b
00099 #define TPASTE3( a, b, c)                         a##b##c
00100 #define TPASTE4( a, b, c, d)                      a##b##c##d
00101 #define TPASTE5( a, b, c, d, e)                   a##b##c##d##e
00102 #define TPASTE6( a, b, c, d, e, f)                a##b##c##d##e##f
00103 #define TPASTE7( a, b, c, d, e, f, g)             a##b##c##d##e##f##g
00104 #define TPASTE8( a, b, c, d, e, f, g, h)          a##b##c##d##e##f##g##h
00105 #define TPASTE9( a, b, c, d, e, f, g, h, i)       a##b##c##d##e##f##g##h##i
00106 #define TPASTE10(a, b, c, d, e, f, g, h, i, j)    a##b##c##d##e##f##g##h##i##j
00107 
00108 
00118 
00119 #define ATPASTE2( a, b)                           TPASTE2( a, b)
00120 #define ATPASTE3( a, b, c)                        TPASTE3( a, b, c)
00121 #define ATPASTE4( a, b, c, d)                     TPASTE4( a, b, c, d)
00122 #define ATPASTE5( a, b, c, d, e)                  TPASTE5( a, b, c, d, e)
00123 #define ATPASTE6( a, b, c, d, e, f)               TPASTE6( a, b, c, d, e, f)
00124 #define ATPASTE7( a, b, c, d, e, f, g)            TPASTE7( a, b, c, d, e, f, g)
00125 #define ATPASTE8( a, b, c, d, e, f, g, h)         TPASTE8( a, b, c, d, e, f, g, h)
00126 #define ATPASTE9( a, b, c, d, e, f, g, h, i)      TPASTE9( a, b, c, d, e, f, g, h, i)
00127 #define ATPASTE10(a, b, c, d, e, f, g, h, i, j)   TPASTE10(a, b, c, d, e, f, g, h, i, j)
00128 
00129 
00130 
00131 #endif  // _TPASTE_H_