Inspired by .
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang info | |
| ;; SPDX-License-Identifier: CC0-1.0 | |
| (define quickscript-directory #t) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* cc -o ucnv-debug ucnv-debug.c `pkg-config --libs --cflags icu-uc` | |
| * SPDX-License-Identifier: (Apache-2.0 OR CC0-1.0) | |
| * SPDX-FileCopyrightText: Philip McGrath <[email protected]> | |
| */ | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stdio.h> | |
| #include <errno.h> | |
| #include "unicode/utypes.h" /* Basic ICU data types */ | |
| #include "unicode/ucnv.h" /* C Converter API */ |
OlderNewer