/* Mount option parsing Copyright (C) 2004 Miklos Szeredi This program can be distributed under the terms of the GNU GPL. See the file COPYING. */ struct opt { const char *optname; int present; char *value; }; void process_options(int *argcp, char *argv[], struct opt opts[], int case_sensitive);