~ubuntu-branches/ubuntu/hardy/renameutils/hardy

« back to all changes in this revision

Viewing changes to src/common/common.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2006-07-21 16:39:15 UTC
  • mfrom: (1.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060721163915-k3kqs080hol8uw1n
Tags: 0.8.1-4
* Enable large file support on 32-bit platforms (closes: #377845)
* Bump Standards-Version up to 3.7.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* common.h - Common definitions.
2
2
 *
3
 
 * Copyright (C) 2001  Oskar Liljeblad
4
 
 *
5
 
 * This file is part of the file renaming utilities (renameutils)
6
 
 * and regex-markup.
7
 
 *
8
 
 * This software is copyrighted work licensed under the terms of the
9
 
 * GNU General Public License. Please consult the file `COPYING' for
10
 
 * details.
 
3
 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
4
 * Oskar Liljeblad
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software Foundation,
 
18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
11
19
 */
12
20
 
13
 
#ifndef __COMMON_H__
14
 
#define __COMMON_H__
15
 
 
16
 
#ifndef MIN
17
 
#define MIN(a,b)        ( ((a)<(b)) ? (a):(b) )
18
 
#endif
19
 
 
20
 
#ifndef MAX
21
 
#define MAX(a,b)        ( ((a)>(b)) ? (a):(b) )
22
 
#endif
 
21
#ifndef COMMON_COMMON_H
 
22
#define COMMON_COMMON_H
23
23
 
24
24
#define SWAP(a,b)       ({ typeof(a) t = a; a = b; b = t; })
25
25