-
Notifications
You must be signed in to change notification settings - Fork 21
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
varnamc CLI utility in C #157
base: master
Are you sure you want to change the base?
Conversation
* Text transliteration works
…tput. By default it should be just text
* set to NULL since it's valueless. | ||
* Modifies str so make a copy if this is a problem | ||
*/ | ||
int split( char * str, char delim, char ***array ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/antirez/sds
could you try this library. check whether this helps
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Tokenization part in that SDS library is exactly what we need. So, C libraries are used just by copy-paste ah ? Perhaps I should use git submodules for better dependency injection.
Realized GNU argp is not available on mac, windows or android. To get argp on them, it'd take some extra work. So this'll only work good on Linux for now. I tried compiling it on Android, but failed because of
|
@joicemjoseph Can you try statically compiling this on Mac and see if it works. I guess it'd need argp-standalone |
Will try and let you know. |
http://savannah.nongnu.org/bugs/?40807
Implemented options :