Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rev 404 compatibility defines #12

Open
cirnwa opened this issue Apr 21, 2016 · 1 comment
Open

Rev 404 compatibility defines #12

cirnwa opened this issue Apr 21, 2016 · 1 comment

Comments

@cirnwa
Copy link

cirnwa commented Apr 21, 2016

define _CharGet #(s, i) s.rawGet(i)

define _CharSet #(s, i, v) s.rawSet(i, v)

define _CharAdd #(s, v) { \

                                uint len = s.rawLength(); \
                                s.rawResize(len + 1);     \
                                s.rawSet(len, v);         \
                            }

define _CharLength #(s) s.rawLength()

define _CharResize #(s, v) s.rawResize(v)

define _ToFloat #(s, v) StrToFloat(s, v)

define _ToInteger #(s, v) StrToInt(s, v)

@JovankaB
Copy link
Collaborator

JovankaB commented Sep 6, 2017

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants