This website works better with JavaScript.
首頁
說明
登入
cacalabs
/
libcaca
镜像来自
https://github.com/cacalabs/libcaca.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
7
Wiki
Activity
瀏覽代碼
* Slight improvement to the Unicode -> ASCII conversion, courtesy of
Ben Wiley Sittler.
tags/v0.99.beta14
Sam Hocevar
sam
17 年之前
父節點
d06bf76c96
當前提交
dd6a99a395
共有
1 個文件被更改
,包括
4 次插入
和
2 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-2
cucul/charset.c
+ 4
- 2
cucul/charset.c
查看文件
@@ -349,8 +349,6 @@ char cucul_utf32_to_ascii(unsigned long int ch)
case 0x00002591: /* ░ */
case 0x00002592: /* ▒ */
case 0x00002593: /* ▓ */
case 0x00002580: /* ▀ */
case 0x00002584: /* ▄ */
case 0x00002588: /* █ */
case 0x0000258c: /* ▌ */
case 0x00002590: /* ▐ */
@@ -358,6 +356,10 @@ char cucul_utf32_to_ascii(unsigned long int ch)
case 0x000025ac: /* ▬ */
case 0x000025ae: /* ▮ */
return '#';
case 0x00002580: /* ▀ */
return '"';
case 0x00002584: /* ▄ */
return ',';
case 0x000025c6: /* ◆ */
case 0x00002666: /* ♦ */
return '+';
Write
Preview
Loading…
取消
儲存