Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created August 3, 2022 01:06
Show Gist options
  • Select an option

  • Save webgtx/90c4976222997f48f54e824bf95db063 to your computer and use it in GitHub Desktop.

Select an option

Save webgtx/90c4976222997f48f54e824bf95db063 to your computer and use it in GitHub Desktop.
Slice string in C
void slice(const char *str, char *result, size_t start, size_t end)
{
strncpy(result, str + start, end - start);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment