Changeset 3476:772b0a7aa509 in roaraudio for libroarpulse


Ignore:
Timestamp:
02/14/10 04:08:46 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

prototype

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroarpulse/utf8.c

    r3475 r3476  
    3939#include <libroarpulse/libroarpulse.h> 
    4040 
     41/** Test if the specified strings qualifies as valid UTF8. Return the string if so, otherwise NULL */ 
     42const char *pa_utf8_valid(const char *str); 
     43 
     44/** Filter all invalid UTF8 characters from the specified string, returning a new fully UTF8 valid string. Don't forget to free the returned string with pa_xfree() */ 
     45char *pa_utf8_filter(const char *str); 
     46 
     47/** Convert a UTF-8 string to the current locale. Free the string using pa_xfree(). */ 
     48char* pa_utf8_to_locale (const char *str); 
     49 
     50/** Convert a string in the current locale to UTF-8. Free the string using pa_xfree(). */ 
     51char* pa_locale_to_utf8 (const char *str); 
     52 
    4153//ll 
Note: See TracChangeset for help on using the changeset viewer.