Skip to content

Instantly share code, notes, and snippets.

@devendranaga
Created October 22, 2022 20:06
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 devendranaga/f52784b2bfaa11e6cf874ac74533093e to your computer and use it in GitHub Desktop.
Save devendranaga/f52784b2bfaa11e6cf874ac74533093e to your computer and use it in GitHub Desktop.
htons in rust
fn htons(val: &u16) -> u16 {
return ((val & 0x00FF) << 8) | ((val & 0xFF00) >> 8)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment