[Implemented] .CHAR .ASCII .UNICODE
Posted: Tue Aug 18, 2009 9:23 pm
Even though I prefer .ub over .a and .uw over .u, it's still not up to me...
Anyway, we have standard structures such as
... but none for...
( The above is also the reason I'd rather have .ub as opposed to .a as in this thread http://www.purebasic.fr/english/viewtopic.php?t=38532 , I've tried to show the difference in 'readability' there... I've linked to it because I think it's pretty relevant, I just hope the devs will forgive me I did so
)
Anyway, we have standard structures such as
Code: Select all
*a.BYTE ; use *a\b
*b.WORD ; use *b\w
*c.LONG ; use *c\l
*d.INTEGER ; use *d\i
*e.FLOAT ; use *e\f
*f.DOUBLE ; use *f\d
*g.STRING ; no, sorry, there's no *g\s
*h.QUAD ; use *h\q
Code: Select all
*i.CHAR ; use *i\c
*j.ASCII ; use *j\a or even better use *j.UBYTE and *j\ub
*k.UNICODE ; use *k\u or even better use *k.UWORD and *k\uw
