• Add two strings
    Hallo, Is it possible, that I can add the strings '1' '.' and '2'. I want to add this 3 strings: 1.2 and convert it into a float value and than I want add a float value.
  • string setup
    in a c-module I found the definition of a string: char acString[20] = ""; For me the initilisation looks a little bit unusual. My questions at this point are: - is this allowed in ansi-c? -...
  • String functions in relocatable code, string is fixed in memory
    I have the following code: strcat(tbuf,"\r\nSH B = "); My program memory model is small so I can re-locate the code in any sector. Unfortunately "\r\nSH B = " is fixed at an absolute address. I can...
  • string functions for xhuge data
    I need string functions which are operating on xhuge data. Has anyone code for: xstrcpy xstrcmp xstrncpy xstrncmp Any help is apprecciated
  • Define strings as unsigned
    Hello, I'm using a graphical Display and have a printf() Function which expects an unsigned char pointer: void LCD_DrawString(unsigned char* s); using LCD_DrawString("Hello World"); generates a...