This file is indexed.

/usr/include/Bpp/Raa/parser.h is in libbpp-raa-dev 2.4.0-2.

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
#include <stdlib.h>
#include <string.h>

typedef struct ThisReponse
{
  char** arg; /* je stocke les arguments */
  int nbarguments; /* je stocke le nombre d'arguments */
} Reponse;

extern Reponse* initreponse(void);
extern void clear_reponse(Reponse* rep);
void ajout_reponse(Reponse* rep, char* pile, int len);
extern void parse(char* chaine, Reponse* rep);
extern char* val(Reponse* Mono, char* argument);