X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2Fmacros.h;h=1c978ed4d9d73703924171c95bc73b91ff4e1dc4;hp=a82bdfe3247db447c0df1d9bdbc6bea176bfb165;hb=eefeeaee57a56cfe1ff8c02a26c44d6f87f1368c;hpb=ee350fdc6822ea17657d0e1598faa3e56c8d6e9b diff --git a/sources/macros.h b/sources/macros.h index a82bdfe..1c978ed 100644 --- a/sources/macros.h +++ b/sources/macros.h @@ -1,3 +1,21 @@ +/* macros.h + * + * Copyright (C) 2000-2002 Simone Piccardi + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ /* * Endianess conversion for int and short types */ @@ -5,10 +23,12 @@ (v>>24) | ((v>>8)&0xFF00) | (v<<24) | ((v<<8)&0xFF0000); } ) #define BE16_TO_LE16(val) ({typeof (val) v= (val); (v>>8) | (v<<8); } ) /* - * Define a protected, right typed, no side effects macro for min + * Define a protected, right typed, no side effects macro for min and max */ #define min(x, y) ({typeof (x) x_ = (x); typeof (y) y_ = (y); \ x_ < y_ ? x_ : y_;}) +#define max(x, y) ({typeof (x) x_ = (x); typeof (y) y_ = (y); \ + x_ > y_ ? x_ : y_;}) /* * debugging print definition */