Ignore:
Timestamp:
Mar 14, 2013 7:18:13 AM (11 years ago)
Author:
riza
Message:

Re #1643: add initial support for CLI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/string.h

    r3553 r4440  
    537537 
    538538/** 
     539 * Convert string to signed integer. The conversion will stop as 
     540 * soon as non-digit character is found or all the characters have 
     541 * been processed. 
     542 * 
     543 * @param str   the string. 
     544 * 
     545 * @return the integer. 
     546 */ 
     547PJ_DECL(long) pj_strtol(const pj_str_t *str); 
     548 
     549/** 
    539550 * Convert string to unsigned integer. The conversion will stop as 
    540551 * soon as non-digit character is found or all the characters have 
Note: See TracChangeset for help on using the changeset viewer.