okular/kpathsea/access.c
Stephan Kulow 5021c85485 syncing the branches. Thanks to the Sitzpisser who forgot to update the
HEAD branch when he updated the kpathsea sources (sorry for the rude word
but it took me an hour)

svn path=/trunk/kdegraphics/kdvi/; revision=33507
1999-11-11 14:31:27 +00:00

95 lines
3 KiB
C

/* access -- test for access permissions of a file.
Copyright (C) 1997 Olaf Weber.
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.
This program 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 this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <stdio.h>
#include <kpathsea/config.h>
#include <kpathsea/c-unistd.h>
#ifdef WIN32
#include <string.h>
#endif
/*
* access mode x
* Returns 0 is x exists and can be accessed in accordance with mode.
* We use this rather than test because test looks at the permissions
* only, which doesn't take read-only file systems into account.
*/
int main (argc, argv)
int argc;
char *argv[];
{
int mode;
int status;
char * i;
if (argc > 1 && strcmp (argv[1], "--help") == 0) {
printf("Usage: %s -MODE FILE\n\
MODE is one or more of rwx. Exit successfully if FILE exists and is\n\
readable (r), writable (w), or executable (x).\n\
\n\
--help display this help and exit\n\
--version output version information and exit\n\n", argv[0]);
fputs ("Email bug reports to tex-k@mail.tug.org.\n", stdout);
exit(0);
} else if (argc > 1 && strcmp (argv[1], "--version") == 0) {
printf ("%s (%s)\n\
Copyright (C) 1997 Olaf Weber.\n\
There is NO warranty. You may redistribute this software\n\
under the terms of the GNU General Public License\n\
For more information about these matters, see the file named COPYING.\n\
Primary author of %s: Olaf Weber.\n",
argv[0], KPSEVERSION, argv[0]);
exit (0);
}
/* insist on exactly two args */
if (argc != 3) {
fprintf(stderr, "%s: Need exactly two arguments.\n\
Try `%s --help' for more information.\n", argv[0], argv[0]);
exit(1);
}
/* The option parsing is somewhat primitive: '-' need not be the first
* character of the mode. The mode must be specified in a single
* option. Both of these may change.
*/
mode = 0;
i = argv[1];
for (i = argv[1]; *i; ++i)
switch (*i) {
case 'r': mode |= R_OK; break;
case 'w': mode |= W_OK; break;
case 'x': mode |= X_OK; break;
case '-': if (i == argv[1]) break;
default:
fprintf(stderr, "%s: Invalid MODE.\n", argv[0]);
exit(1);
}
status = access(argv[2], mode);
/* fail if the access call failed */
if (status != 0) {
return 1;
}
/* otherwise, succeed */
return 0;
}