Ignore:
Timestamp:
Nov 21, 2005 1:55:47 AM (18 years ago)
Author:
bennylp
Message:

Set svn:eol-style property

File:
1 edited

Legend:

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

    • Property svn:eol-style set to native
    r63 r65  
    1 /* $Id: $ */ 
     1/* $Id$ */ 
    22/*  
    33 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org> 
     
    3131 
    3232/** 
    33  * Unescape string. 
     33 * Unescape string. If source string does not contain any escaped 
     34 * characters, the function would simply return the original string. 
     35 * Otherwise a new string will be allocated. 
    3436 * 
    35  * @param str       The string to unescape. 
     37 * @param pool      Pool to allocate the string. 
     38 * @param src       Source string to unescape. 
     39 * 
     40 * @return          String with no escaped characters. 
    3641 */ 
    37 PJ_DECL(void) pj_str_unescape(pj_str_t *str); 
     42PJ_DECL(pj_str_t) pj_str_unescape( pj_pool_t *pool, const pj_str_t *src); 
    3843 
    3944/** 
Note: See TracChangeset for help on using the changeset viewer.