| 15 | #include "acl_cpp/mime/rfc2047.hpp" |
| 16 | |
| 17 | static int isvalidChinese(char c1, char c2) |
| 18 | { |
| 19 | if ((c1 & 0x80) == 0 || (c2 & 0x80) == 0) |
| 20 | return (0); |
| 21 | else |
| 22 | return (1); |
| 23 | if (!((c2)&0xc0) ) |
| 24 | return (0); |
| 25 | } |
| 26 | |
| 27 | // �����Ч�ĺ����ַ� |
| 28 | static int get_valid_string(char *src, unsigned dlen, char *buffer, unsigned bsize) |
no outgoing calls
no test coverage detected
searching dependent graphs…