Simplified standard library

This commit is contained in:
Eduard Urbach 2025-02-17 17:49:42 +01:00
parent 6eab48c586
commit 930b5e16f4
Signed by: eduard
GPG key ID: 49226B848C78F6C8
25 changed files with 232 additions and 231 deletions

View file

@ -1,3 +1,3 @@
htons(num int) -> int {
htons(num uint16) -> uint16 {
return ((num & 0xFF) << 8) | (num >> 8)
}