]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/minilib.c
Merge branch 'master' of nyus:/storage/git/netwatch
[netwatch.git] / lib / minilib.c
index 0407d3f386e66fc500f4aa1febccc6ef109a93e8..677c77ab614a9a4ffc235c0be3e848b2d3640e8c 100644 (file)
@@ -81,3 +81,8 @@ void puthex(unsigned long l)
        tohex(d, l);
        puts(d);
 }
+
+unsigned short htons(unsigned short in)
+{
+       return (in >> 8) | (in << 8);
+}
This page took 0.017604 seconds and 4 git commands to generate.