This file is indexed.

/usr/include/phone-utils/phone-utils.h is in libphone-utils-dev 0.1+git20110523-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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
 *  Copyright (C) 2009
 *      Authors (alphabetical) :
 *              Tom Hacohen (tom@stosb.com)
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation; version 3 of the license.
 *
 *  This program 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 Lesser General Public License for more details.
 */

#ifndef _PHONE_UTILS_H
#define _PHONE_UTILS_H
#include <glib.h>

#include <phone-utils-gsm.h>

#define PHONE_UTILS_CONFIG "/etc/phone-utils.conf"
#define PHONE_UTILS_CONFIG_CODES_GROUP "local"
#define PHONE_UTILS_FIELD_DELIMITER '|'

/* Initializes the use of phone-utils, calls phone_utils_init_from_file
 * with the default config filename (PHONE_UTILS_CONFIG)
 */
int
phone_utils_init();

/* Cleans up the memory allocated by the lib, assumes the lib is already
 * initialized.
 */
void
phone_utils_deinit();

/* returns true if the lib is already initialized, false otherwise */
int
phone_utils_is_initialized();

/* calls all the phone_utils_set_* functions on all the arguments returns
 * 0 on sucess.
 */
int
phone_utils_set_codes(char *_international_prefix, char *_national_prefix, 
                      char *_country_code, char *_area_code);

/*void 
phone_utils_set_delimiters(char *trailing_delimiters, char *possible_chars, 
                       char *filler_chars) */

/* initalizes the lib from configuration file denoted by filename
 * assumes filename is a valid null terminated string
 */
int
phone_utils_init_from_file(const char *filename) ;

/* calls phone_utils_save_config_to_file with the default filename (PHONE_UTILS_CONFIG)
 */
int
phone_utils_save_config();

/* saves all the currently active configuration to the file denoted by filename
 * assumes filename is a valid string
 */
int
phone_utils_save_config_to_file(const char *filename);

/* returns a copy allocated by strdup of this parameter */
char *
phone_utils_get_strdup_user_international_prefix() ;

/* returns a copy allocated by strdup of this parameter */
char *
phone_utils_get_strdup_user_national_prefix() ;

/* returns a copy allocated by strdup of this parameter */
char *
phone_utils_get_strdup_user_country_code();

/* returns a copy allocated by strdup of this parameter */
char * 
phone_utils_get_strdup_user_area_code() ;

/* returns this parameter */
const char *
phone_utils_get_user_international_prefix() ;

/* returns this parameter */
const char *
phone_utils_get_user_national_prefix() ;

/* returns this parameter */
const char *
phone_utils_get_user_country_code();

/* returns this parameter */
const char * 
phone_utils_get_user_area_code() ;

/* sets this parameters using value returns 0 on sucess */
int
phone_utils_set_user_international_prefix(const char *value) ;

/* sets this parameters using value returns 0 on sucess */
int
phone_utils_set_user_national_prefix(const char *value) ;

/* sets this parameters using value returns 0 on sucess */
int
phone_utils_set_user_country_code(const char *value);

/* sets this parameters using value returns 0 on sucess */
int
phone_utils_set_user_area_code(const char *value) ;

/* document, TBD */
char *phone_utils_get_user_international_prefixes();

char *phone_utils_get_user_national_prefixes();

char *phone_utils_get_user_country_codes();

char *phone_utils_get_user_area_codes();

/* receives a valid string that holds a number to normalize
 * and normalizes it according (mostly) this guidelines:
 *
 * normalized number = "+<CC><HC><NUMBER>"
 * non-normalized my be: <NUMBER> | <NationalPrefix><anyHC><NUMBER> | 
 * <InterntlPrefix><anyCC><anyHC><NUMBER>
 * 
 * so: 
 * Nr1 := Nr s/<IP>(.*)/\+$1/           #00 49 911 12345 -> + 49 911 12345
 * Nr2 = Nr1 s/<NP>/\+<CC>/             # 0 911 12345 ->  + 49 911 12345
 * Nr3 = Nr2 s/[^\+](.*)/\+<CC><HC>$1/  # 12345 ->  + 49 911 12345
 * step3 above isn't considered very practical for cellphones
 * <IP>, <CC>, <NP>, and <HC> are user definable config-values
 * 
 * some examples:
 * normalized "*31#0049 (0) 30 12300 - 456W*1200*#" becomes +493012300456
 * normalized "0049 30 123 00 456" becomes +493012300456
 * normalized "030 123 00 456;foo" becomes +493012300456
 * normalized "123 00 456" becomes +493012300456
 *
 * returns a malloc allocated string containing the normalized number
 * returns NULL on error.
 */
char *
phone_utils_normalize_number(const char *_number);

/* TBD */
char *
phone_utils_normalize_number_using_params(const char *_number, const char *param_country,
					const char *param_area);
/* receives two valid strings containing phone numbers, normalizes them
 * using phone_utils_normalize_number and returns a strcmp like result
 */
int 
phone_utils_numbers_compare(const char * _a, const char * _b);

/* receives two valid strings containing phone numbers, normalizes them
 * using phone_utils_normalize_number and returns true if they are equal
 * false otherwise
 */
int 
phone_utils_numbers_equal(const char * _a, const char * _b);

/* receives a valid string containing a phone number and returns true if
    * it's a valid sms phone number, false otherwise.
     */
int
phone_utils_sms_is_valid_number(const char *number);

/* receives a valid string containing a phone number and returns true if
    * it's a valid call phone number, false otherwise.
     */
int
phone_utils_call_is_valid_number(const char *number);

/* receives a valid string containing a phone number.
 * Tries to remove all the filler_chars for the number.
 * returns 0 on success error code on failure.
 */
int
phone_utils_remove_filler_chars(char *number);

#endif