defs.h revision e99af270a60891e68d465c4cd97dbe29cd1a05e4
1/*
2 * This file is part of ltrace.
3 * Copyright (C) 1998,2008 Juan Cespedes
4 * Copyright (C) 2006 Ian Wienand
5 * Copyright (C) 2006 Steve Fink
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 */
22
23#ifndef DEFAULT_ALIGN
24#define DEFAULT_ALIGN 50	/* default alignment column for results */
25#endif				/* (-a switch) */
26
27#ifndef DEFAULT_STRLEN
28#define DEFAULT_STRLEN  32	/* default maximum # of bytes printed in */
29#endif				/* strings (-s switch) */
30
31#ifndef DEFAULT_ARRAYLEN
32#define DEFAULT_ARRAYLEN  4	/* default maximum # array elements */
33#endif				/* (-A switch) */
34