tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

srtest.cpp (1313B)


      1 // © 2016 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html
      3 /*
      4 * %W% %E%
      5 *
      6 * (C) Copyright IBM Corp. 2001-2016 - All Rights Reserved
      7 *
      8 */
      9 
     10 #include "unicode/utypes.h"
     11 #include "unicode/uscript.h"
     12 
     13 #include "cmemory.h"
     14 #include "scrptrun.h"
     15 
     16 #include <stdio.h>
     17 
     18 char16_t testChars[] = {
     19            '(', ')', '(', ')', '(', ')', 'x', '(', ')',
     20            0x0020, 0x0946, 0x0939, 0x093F, 0x0928, 0x094D, 0x0926, 0x0940, 0x0020,
     21            0x0627, 0x0644, 0x0639, 0x0631, 0x0628, 0x064A, 0x0629, 0x0020,
     22            0x0420, 0x0443, 0x0441, 0x0441, 0x043A, 0x0438, 0x0439, 0x0020,
     23            'E', 'n', 'g', 'l', 'i', 's', 'h',  0x0020,
     24            0x6F22, 0x5B75, 0x3068, 0x3072, 0x3089, 0x304C, 0x306A, 0x3068, 
     25            0x30AB, 0x30BF, 0x30AB, 0x30CA,
     26            0xD801, 0xDC00, 0xD801, 0xDC01, 0xD801, 0xDC02, 0xD801, 0xDC03
     27 };
     28 
     29 int32_t testLength = UPRV_LENGTHOF(testChars);
     30 
     31 int main()
     32 {
     33    icu::ScriptRun scriptRun(testChars, 0, testLength);
     34 
     35    while (scriptRun.next()) {
     36        int32_t     start = scriptRun.getScriptStart();
     37        int32_t     end   = scriptRun.getScriptEnd();
     38        UScriptCode code  = scriptRun.getScriptCode();
     39 
     40        printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
     41    }
     42    return 0;
     43 }