]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - examples/loadables/pathchk.c
Imported from ../bash-4.0-rc1.tar.gz.
[thirdparty/bash.git] / examples / loadables / pathchk.c
index 2e36f8f6b69b3e3fd661a93cd5a9515deb2cfe32..c5fd24a899629ae7d58c5cb8261833f0cdf1f8bd 100644 (file)
 
 /* See Makefile for compilation details. */
 
+/*
+   Copyright (C) 1999-2009 Free Software Foundation, Inc.
+
+   This file is part of GNU Bash.
+   Bash 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 3 of the License, or
+   (at your option) any later version.
+
+   Bash is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with Bash.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
 #include <config.h>
 
 #include <sys/types.h>
@@ -45,6 +63,7 @@
 #include "stdc.h"
 #include "bashgetopt.h"
 #include "maxpath.h"
+#include "common.h"
 
 #if !defined (errno)
 extern int errno;
@@ -112,6 +131,8 @@ pathchk_builtin (list)
 }
 
 char *pathchk_doc[] = {
+       "Check pathnames for validity.",
+       "",
        "Check each pathname argument for validity (i.e., it may be used to",
        "create or access a file without casuing syntax errors) and portability",
        "(i.e., no filename truncation will result).  If the `-p' option is",