Line 1... |
Line 1... |
/* strings -- print the strings of printable characters in files
|
/* strings -- print the strings of printable characters in files
|
Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
|
Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
|
2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011
|
2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012
|
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
|
|
This program is free software; you can redistribute it and/or modify
|
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
|
it under the terms of the GNU General Public License as published by
|
the Free Software Foundation; either version 3, or (at your option)
|
the Free Software Foundation; either version 3, or (at your option)
|
Line 63... |
Line 63... |
#include "sysdep.h"
|
#include "sysdep.h"
|
#include "bfd.h"
|
#include "bfd.h"
|
#include "getopt.h"
|
#include "getopt.h"
|
#include "libiberty.h"
|
#include "libiberty.h"
|
#include "safe-ctype.h"
|
#include "safe-ctype.h"
|
#include <sys/stat.h>
|
|
#include "bucomm.h"
|
#include "bucomm.h"
|
|
|
#define STRING_ISGRAPHIC(c) \
|
#define STRING_ISGRAPHIC(c) \
|
( (c) >= 0 \
|
( (c) >= 0 \
|
&& (c) <= 255 \
|
&& (c) <= 255 \
|