Author Topic: Ultimate ASM/C Resource  (Read 5872 times)

0 Members and 1 Guest are viewing this topic.

saubue

  • Guest
Ultimate ASM/C Resource
« Reply #15 on: April 19, 2006, 09:07:00 am »
QuoteBegin-tifreak8x+Apr 19 2006, 05:36 PM-->
QUOTE (tifreak8x @ Apr 19 2006, 05:36 PM)
Umm, I am not sure the spelling, but it was in Creilsheim... something similar to that. I can get the exact spelling from mom when I talk to her...  

 I guess you spelled it right - it's in the middle of Germany, says map24 :)smile.gif

Offline Halifax

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1334
  • Rating: +2/-1
    • View Profile
    • TI-Freakware
Ultimate ASM/C Resource
« Reply #16 on: April 08, 2007, 03:56:00 pm »
These algorithms are not made for 68K although they may work on it I don't know. But I made these because there is a toupper() and tolower() that converts the character to upper or lowercase respectivly. Some what about strings?? Well I made a routine for it. Here you go. It all depends on if the 68K ASCII table is standard. If it is then this will work on it. If it is not then this will not work on it.


c1-->
CODE
ec1
/* This will convert a string consisting of all, none or mixed cases of letters to uppercase. Note that it will not convert any characters other than alphabet characters */
char touppers( char string[] )
{
 
There are 10 types of people in this world-- those that can read binary, and those that can't.