Removed underscores
This commit is contained in:
parent
10d4013e1c
commit
1eeb7d4eac
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
.fuse_hidden*
|
||||
.fuse_hidden*
|
||||
tests
|
||||
|
@ -2,8 +2,8 @@ format ELF
|
||||
public send as 'dns.send'
|
||||
public get_field as 'dns.get_field'
|
||||
|
||||
include '../include/_macros.inc'
|
||||
include '../include/_dns.inc'
|
||||
include '../include/macros.inc'
|
||||
include '../include/dns.inc'
|
||||
extrn string.len
|
||||
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
format ELF
|
||||
public myip as 'dnstoys.myip'
|
||||
|
||||
include '../include/_macros.inc'
|
||||
include '../include/_dns.inc'
|
||||
include '../include/macros.inc'
|
||||
include '../include/dns.inc'
|
||||
extrn network.get_ip
|
||||
extrn dns.send
|
||||
extrn dns.get_field
|
||||
|
@ -3,8 +3,8 @@ public open as 'file.open'
|
||||
public close as 'file.close'
|
||||
public content as 'file.content'
|
||||
|
||||
include '../include/_file.inc'
|
||||
include '../include/_macros.inc'
|
||||
include '../include/file.inc'
|
||||
include '../include/macros.inc'
|
||||
extrn string.len
|
||||
extrn string.copy
|
||||
extrn path.filename
|
||||
|
@ -2,8 +2,8 @@ format ELF
|
||||
public get_ip as 'network.get_ip'
|
||||
public IP_to_str as 'network.IP_to_str'
|
||||
|
||||
include '../include/_macros.inc'
|
||||
include '../include/_dns.inc'
|
||||
include '../include/macros.inc'
|
||||
include '../include/dns.inc'
|
||||
extrn dns.send
|
||||
extrn dns.get_field
|
||||
extrn string.len
|
||||
|
@ -1,7 +1,7 @@
|
||||
format ELF
|
||||
public filename as 'path.filename'
|
||||
|
||||
include '../include/_macros.inc'
|
||||
include '../include/macros.inc'
|
||||
extrn string.len
|
||||
|
||||
section '.text' executable
|
||||
|
@ -6,7 +6,7 @@ public _bin as 'print.bin'
|
||||
public _int as 'print.int'
|
||||
public exit
|
||||
|
||||
include '../include/_macros.inc'
|
||||
include '../include/macros.inc'
|
||||
|
||||
_new_line equ 10
|
||||
|
||||
|
@ -3,7 +3,7 @@ public copy as 'string.copy'
|
||||
public len as 'string.len'
|
||||
public parse_int as 'string.parse_int'
|
||||
|
||||
include "../include/_macros.inc"
|
||||
include "../include/macros.inc"
|
||||
|
||||
section '.string.text' executable
|
||||
copy:
|
||||
|
Reference in New Issue
Block a user