X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fareadlink.h;h=476559b9d3b2ed35f57a8b823e36cb4182c8f72a;hb=14b6d70139486b63e66257aad1abe2a9615f4d96;hp=e2baa6b31f1f40f1b9424aa73af83c63a1d058d9;hpb=39756f7a0ec9b7028ec1d95929213fd93f391e1d;p=gnulib.git diff --git a/lib/areadlink.h b/lib/areadlink.h index e2baa6b31..476559b9d 100644 --- a/lib/areadlink.h +++ b/lib/areadlink.h @@ -1,11 +1,12 @@ /* Read symbolic links without size limitation. - Copyright (C) 2001, 2003, 2004, 2007 Free Software Foundation, Inc. + Copyright (C) 2001, 2003-2004, 2007, 2009-2010 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 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 @@ -13,12 +14,20 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; see the file COPYING. - If not, write to the Free Software Foundation, - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* Written by Jim Meyering */ #include +extern char *areadlink (char const *filename); extern char *areadlink_with_size (char const *filename, size_t size_hint); + +#if GNULIB_AREADLINKAT +extern char *areadlinkat (int fd, char const *filename); +#endif + +#if GNULIB_AREADLINKAT_WITH_SIZE +extern char *areadlinkat_with_size (int fd, char const *filename, + size_t size_hint); +#endif