xref: /OK3568_Linux_fs/app/forlinx/quectelCM/at_tok.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* //device/system/reference-ril/at_tok.h
2*4882a593Smuzhiyun **
3*4882a593Smuzhiyun ** Copyright 2006, The Android Open Source Project
4*4882a593Smuzhiyun **
5*4882a593Smuzhiyun ** Licensed under the Apache License, Version 2.0 (the "License");
6*4882a593Smuzhiyun ** you may not use this file except in compliance with the License.
7*4882a593Smuzhiyun ** You may obtain a copy of the License at
8*4882a593Smuzhiyun **
9*4882a593Smuzhiyun **     http://www.apache.org/licenses/LICENSE-2.0
10*4882a593Smuzhiyun **
11*4882a593Smuzhiyun ** Unless required by applicable law or agreed to in writing, software
12*4882a593Smuzhiyun ** distributed under the License is distributed on an "AS IS" BASIS,
13*4882a593Smuzhiyun ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*4882a593Smuzhiyun ** See the License for the specific language governing permissions and
15*4882a593Smuzhiyun ** limitations under the License.
16*4882a593Smuzhiyun */
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #ifndef AT_TOK_H
19*4882a593Smuzhiyun #define AT_TOK_H 1
20*4882a593Smuzhiyun 
21*4882a593Smuzhiyun int at_tok_start(char **p_cur);
22*4882a593Smuzhiyun int at_tok_nextint(char **p_cur, int *p_out);
23*4882a593Smuzhiyun int at_tok_nexthexint(char **p_cur, int *p_out);
24*4882a593Smuzhiyun 
25*4882a593Smuzhiyun int at_tok_nextbool(char **p_cur, char *p_out);
26*4882a593Smuzhiyun int at_tok_nextstr(char **p_cur, char **out);
27*4882a593Smuzhiyun 
28*4882a593Smuzhiyun int at_tok_hasmore(char **p_cur);
29*4882a593Smuzhiyun 
30*4882a593Smuzhiyun #if 1 //quectel
31*4882a593Smuzhiyun int skipComma(char **p_cur);
32*4882a593Smuzhiyun int at_tok_charcounter(char *p_cur, char *target, int *p_outcount);
33*4882a593Smuzhiyun char* at_tok_getElementValue(const char *p_in, const char *beginTag, const char *endTag, char **remaining);
34*4882a593Smuzhiyun #endif
35*4882a593Smuzhiyun #endif /*AT_TOK_H */
36*4882a593Smuzhiyun 
37