Skip to content

Instantly share code, notes, and snippets.

@zao
Created August 17, 2014 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zao/c657698c7f3f7df8bdfa to your computer and use it in GitHub Desktop.
Save zao/c657698c7f3f7df8bdfa to your computer and use it in GitHub Desktop.
inline void lv_range_strip_comment(lv_range* r) {
char* p = memchr(r->from, '#', r->to - r->from);
if (p) {
r->to = p;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment