summaryrefslogtreecommitdiff
path: root/options.h
diff options
context:
space:
mode:
authorSergiu Ivanov <unlimitedscolobb@gmail.com>2008-11-22 00:25:17 +0200
committerSergiu Ivanov <unlimitedscolobb@gmail.com>2008-11-22 00:25:17 +0200
commit9401ed47c6d00cca32b581e096502f9534998bcd (patch)
tree5e601b6d3c6dd10c71c579e6c89b609b3e4f292d /options.h
parent4e81430d26eef24f5bb8464c8c54a11b042f1842 (diff)
Moved the code to GCS
The code now complies (hopefully) with GNU Coding Standards.
Diffstat (limited to 'options.h')
-rw-r--r--options.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/options.h b/options.h
index 6be60dd58..cdebc687c 100644
--- a/options.h
+++ b/options.h
@@ -1,10 +1,10 @@
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
/*options.h*/
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
/*Declarations for parsing the command line switches*/
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
/*Based on the code of unionfs translator.*/
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
/*Copyright (C) 2001, 2002, 2005, 2008 Free Software Foundation, Inc.
Written by Sergiu Ivanov <unlimitedscolobb@gmail.com>.
@@ -22,25 +22,25 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA.*/
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
#ifndef __OPTIONS_H__
#define __OPTIONS_H__
-/*----------------------------------------------------------------------------*/
-/*--------Macros--------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
+/*--------Macros-------------------------------------------------------------*/
/*Makes a long option out of option name*/
#define OPT_LONG(o) "--"o
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
-/*----------------------------------------------------------------------------*/
-/*--------Global Variables----------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
+/*--------Global Variables---------------------------------------------------*/
/*The argp parser for startup arguments*/
extern struct argp argp_startup;
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
/*The argp parser for rutime arguments*/
extern struct argp argp_runtime;
-/*----------------------------------------------------------------------------*/
+/*---------------------------------------------------------------------------*/
/*The name of the translator to filter out*/
-extern char * target_name;
-/*----------------------------------------------------------------------------*/
+extern char *target_name;
+/*---------------------------------------------------------------------------*/
#endif /*__OPTIONS_H__*/