This file is indexed.

/usr/share/doc/libargtable2-dev/examples/argxxx.h is in libargtable2-dev 13-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*********************************************************************
Example source code for defining custom arg_xxx data types for the
argtable2 command line parser library. It shows how to make custom
arg_xxx data types with additional error checking capabilities.

Copyright (C) 1998-2001,2003-2011 Stewart Heitmann
sheitmann@users.sourceforge.net

This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.

This software 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
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
**********************************************************************/

#ifndef ARG_XXX
#define ARG_XXX

#include <argtable2.h>

struct arg_xxx
   {
   struct arg_hdr hdr;      /* The mandatory argtable header struct */
   int count;               /* Number of matching command line arguments found */
   double *data;            /* Array of matching command line argument data  */
   double minval, maxval;   /* Custom range of allowable data values */
   };

struct arg_xxx* arg_xxx0(const char* shortopts, const char* longopts, const char *datatype,
                         double minvalue, double maxvalue, const char *glossary);

struct arg_xxx* arg_xxx1(const char* shortopts, const char* longopts, const char *datatype,
                         double minvalue, double maxvalue, const char *glossary);

struct arg_xxx* arg_xxxn(const char* shortopts, const char* longopts, const char *datatype,
                         int mincount, int maxcount,
                         double minvalue, double maxvalue, const char *glossary);

#endif