3 * Copyright (C) 2001 Simone Piccardi
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 /****************************************************************
21 * Program test_fopen.c:
22 * Program to test function fopen
24 * Author: Simone Piccardi
27 * Usage: testfopen -h give all info's
29 ****************************************************************/
31 * Include needed headers
34 #include <errno.h> /* error definitions and routines */
35 #include <stdlib.h> /* C standard library */
36 #include <unistd.h> /* unix standard library */
37 #include <stdio.h> /* standard I/O library */
38 #include <string.h> /* C strings library */
40 /* Help printing routine */
43 int main(int argc, char *argv[])
46 * Variables definition
52 * Input section: decode command line parameters
55 opterr = 0; /* don't want writing to stderr */
56 while ( (i = getopt(argc, argv, "h")) != -1) {
61 case 'h': /* help option */
62 printf("Wrong -h option use\n");
66 case '?': /* unrecognized options */
67 printf("Unrecognized options -%c\n",optopt);
69 default: /* should not reached */
73 /* ***********************************************************
75 * Options processing completed
79 * ***********************************************************/
80 /* There must be 2 remaing parameters */
81 if ( (argc-optind) != 2 ) {
82 printf("From %d arguments, removed %d options\n", argc, optind);
85 if ( !(file = fopen(argv[1], argv[2]))) {
86 perror("cannot open file");
91 getline(&ptr, &i, file);
92 // fclean(file); /* do not exist on Linux */
98 * routine to print usage info and exit
101 printf("Program testfopen : test fopen for a file \n");
103 printf(" testfopen [-h] file mode \n");
104 printf(" -h print this help\n");