mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/*
|
|
linphone
|
|
Copyright (C) 2012 Belledonne Communications SARL
|
|
Author: Simon MORLAT (simon.morlat@linphone.org)
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
|
|
#include "linphonecore.h"
|
|
|
|
int main(int argc , char *argv[]){
|
|
LinphoneProxyConfig *cfg;
|
|
char normalized_number[32];
|
|
if (argc<2){
|
|
fprintf(stderr,"Usage:\n%s <phone number> [<country code>] [--escape-plus]\nReturns normalized number.", argv[0]);
|
|
return -1;
|
|
}
|
|
linphone_core_enable_logs(stderr);
|
|
cfg=linphone_proxy_config_new();
|
|
if (argc>2)
|
|
linphone_proxy_config_set_dial_prefix(cfg,argv[2]);
|
|
if (argc>3 && strcmp(argv[3],"--escape-plus")==0)
|
|
linphone_proxy_config_set_dial_escape_plus(cfg,TRUE);
|
|
linphone_proxy_config_normalize_number(cfg,argv[1],normalized_number,sizeof(normalized_number));
|
|
printf("Normalized number is %s\n",normalized_number);
|
|
return 0;
|
|
}
|