Meta: Add files to repository
This commit is contained in:
parent
6d27d43268
commit
52cb92f587
120 changed files with 71820 additions and 0 deletions
9
System/Api/Ipv4.HC
Normal file
9
System/Api/Ipv4.HC
Normal file
|
@ -0,0 +1,9 @@
|
|||
U32 @ipv4_address(I64 o3, I64 o2, I64 o1, I64 o0)
|
||||
{
|
||||
U32 addr = NULL;
|
||||
addr.u8[3] = o3;
|
||||
addr.u8[2] = o2;
|
||||
addr.u8[1] = o1;
|
||||
addr.u8[0] = o0;
|
||||
return addr;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue