]> sjero.net Git - linphone/blob - coreapi/test_numbers.c
8cf4fb7928a6ab242744005932026d3a0b8b58be
[linphone] / coreapi / test_numbers.c
1 /*
2 linphone
3 Copyright (C) 2012 Belledonne Communications SARL
4 Author: Simon MORLAT (simon.morlat@linphone.org)
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 */
20
21
22 #include "linphonecore.h"
23
24 int main(int argc , char *argv[]){
25         LinphoneProxyConfig *cfg;
26         char normalized_number[32];
27         if (argc<2){
28                 fprintf(stderr,"Usage:\n%s <phone number> [<country code>] [--escape-plus]\nReturns normalized number.", argv[0]);
29                 return -1;
30         }
31         linphone_core_enable_logs(stderr);
32         cfg=linphone_proxy_config_new();
33         if (argc>2)
34                 linphone_proxy_config_set_dial_prefix(cfg,argv[2]);
35         if (argc>3 && strcmp(argv[3],"--escape-plus")==0)
36                 linphone_proxy_config_set_dial_escape_plus(cfg,TRUE);
37         linphone_proxy_config_normalize_number(cfg,argv[1],normalized_number,sizeof(normalized_number));
38         printf("Normalized number is %s\n",normalized_number);
39         return 0;
40 }