that _write \ fwrite to console is stopping when a null is found...
maybe it was hardcoded to "puts" when the target file is stdout?
Code: Select all
fwrite("Hello\0World\n",1,12,stdout);
_write(STDOUT_FILENO,"Hello\0World\n",12);

Code: Select all
fwrite("Hello\0World\n",1,12,stdout);
_write(STDOUT_FILENO,"Hello\0World\n",12);
is because i don't code in C/C++ i only code in freebasic, so i'm porting the freebasic runtime lib... to ARM, (it generates C code in the end anyway...)WinterMute wrote:Why are you trying to print strings with an included null character anyway, this is a normal termination character.
I can change the way the console functions in libnds work but it'll be a while before I release a new one - still testing the next devkitARM and that will be released first.
i'm not... i just want it to be compatible with such things... and what i expected to see on screen is probabily a space or just ignore that char... i remember sometimes when coding i test things by printing the buffer in ASCII format... and so freebasic allow me todo that since the string class itself support /0, but then got it chopped off would be bad...Izhido wrote:Even so... why are you actually including \0 characters in your string ? What is the intended effect of sending a \0 character to the screen? What do you expect to see there, in the place of that \0 character?
first \0 means the end of a C string (Zstring in freebasic)... in C++ you have also the string class that suppose to not be affected by \0.. anyway, but, so...tueidj wrote:It's not a bug, it's perfectly valid C behaviour - '\0' signifies the end of a string.
Users browsing this forum: No registered users and 3 guests