IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 8, 2016, 5:10:16 PM (10 years ago)
Author:
eugene
Message:

tests towards 8-bit ascii characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libkapa/src/DrawRotString.c

    r39595 r39626  
    7777  /* draw characters one-by-one */
    7878  unsigned int i;
     79  // unsigned char *tmpstring = (unsigned char *) string;
     80
    7981  for (i = 0; i < strlen(string); i++) {
    80     N = (int)(string[i]);
     82    // N = (unsigned int)(tmpstring[i]);
     83    // fprintf (stderr, "char: %d %c\n", N, tmpstring[i]);
     84
     85    N = (int)string[i];
    8186    if ((N < 0) || (N >= NROTCHARS)) continue;
    8287
Note: See TracChangeset for help on using the changeset viewer.