123456789101112131415161718192021222324 |
- /*
- * pinyin.h
- * Chinese Pinyin First Letter
- *
- * Created by George on 4/21/10.
- * Copyright 2010 RED/SAFI. All rights reserved.
- *
- */
- /*
- * // Example
- *
- * #import "JXChatpinyin.h"
- *
- * NSString *hanyu = @"中国共产党万岁!";
- * for (int i = 0; i < [hanyu length]; i++)
- * {
- * printf("%c", pinyinFirstLetter([hanyu characterAtIndex:i]));
- * }
- *
- */
- char pinyinFirstLetterXXX(unsigned short hanzi);
-
|