blob: eb5bd71a4e311b984feddb777caa06a478af4480 [file] [log] [blame]
Petr Machatae99af272012-10-26 00:29:52 +02001/*
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 */
Juan Cespedes5e01f651998-03-08 22:31:44 +010022
Juan Cespedesce377d52008-12-16 19:38:10 +010023#ifndef DEFAULT_ALIGN
24#define DEFAULT_ALIGN 50 /* default alignment column for results */
Ian Wienand2d45b1a2006-02-20 22:48:07 +010025#endif /* (-a switch) */
Juan Cespedes5e01f651998-03-08 22:31:44 +010026
Juan Cespedes5e01f651998-03-08 22:31:44 +010027#ifndef DEFAULT_STRLEN
Ian Wienand2d45b1a2006-02-20 22:48:07 +010028#define DEFAULT_STRLEN 32 /* default maximum # of bytes printed in */
29#endif /* strings (-s switch) */
Steve Fink1150bc42006-08-07 06:04:43 +020030
31#ifndef DEFAULT_ARRAYLEN
32#define DEFAULT_ARRAYLEN 4 /* default maximum # array elements */
33#endif /* (-A switch) */