Add comment to is_diacritic()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25521 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomer Shalev 2010-04-07 18:45:12 +00:00
parent 289d66e330
commit b5466cd2ec

View file

@ -22,5 +22,8 @@
#define _DIACRITIC_H_ #define _DIACRITIC_H_
#include "system.h" #include "system.h"
/* Tests whether a given charactor code is a diacritic mark
* Sets is_rtl if the character belongs to an RTL language
*/
int is_diacritic(const unsigned short char_code, bool *is_rtl); int is_diacritic(const unsigned short char_code, bool *is_rtl);
#endif #endif