Skip to content

Instantly share code, notes, and snippets.

@linstantnoodles
Created February 5, 2013 01:33
Show Gist options
  • Save linstantnoodles/4711368 to your computer and use it in GitHub Desktop.
Save linstantnoodles/4711368 to your computer and use it in GitHub Desktop.
public static final int STR_SIZE(int n) {
float bytesPerChar = Charset.defaultCharset().newEncoder().maxBytesPerChar();
return ((n+1) * (int)bytesPerChar); //1 xtra null char
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment