This file is indexed.

/usr/include/sipxtapi/os/OsTokenizer.h is in libsipxtapi-dev 3.3.0~test17-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
//
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp.  All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////


/* This code was taken from a program I wrote some time ago. It parses a string
 * for whitespace and quotes much like a shell would. Characters enclosed in
 * quotes are counted as a single token. Extra whitespace at the beginning and
 * end of the string is removed. The tokenizing function returns a token
 * structure, which can be used to access the tokens in the original string
 * (which will have been modified). Once the tokens have been used by the
 * caller, the token structure must be destroyed to free the token pointers. */

#ifndef __OsTokenizer_h
#define __OsTokenizer_h

typedef struct PT_TOKEN {
        char * string;
        int offset[8];
        int offsets;
        struct PT_TOKEN * next;
} pt_token_t;

/* parse a string and return a (pointer to a) token structure */
/* sets the token count in *args */
pt_token_t * parse_tokenize(char * string, int * args);

/* return a pointer to the given token */
const char * parse_token(pt_token_t * t, int which);

/* destroy the token structure */
void parse_kill(pt_token_t * t);

#endif /* __OsTokenizer_h */