Spaces to tabs
This commit is contained in:
parent
c163efd83d
commit
20a9a96dc7
30
README.md
30
README.md
@ -4,8 +4,8 @@ This project for me just for fun to not spending time for routine operations
|
|||||||
- print
|
- print
|
||||||
- str
|
- str
|
||||||
- int
|
- int
|
||||||
- [ ] float
|
- ~~float~~
|
||||||
- [ ] hex
|
- ~~hex~~
|
||||||
- char
|
- char
|
||||||
- bin
|
- bin
|
||||||
- nl
|
- nl
|
||||||
@ -14,21 +14,21 @@ This project for me just for fun to not spending time for routine operations
|
|||||||
- open
|
- open
|
||||||
- close
|
- close
|
||||||
- content
|
- content
|
||||||
- [ ] size
|
- ~~size~~
|
||||||
- [ ] next_line
|
- ~~next_line~~
|
||||||
3. path
|
3. path
|
||||||
- filename
|
- filename
|
||||||
- [ ] join
|
- ~~join~~
|
||||||
- [ ] is_dir
|
- ~~is_dir~~
|
||||||
- [ ] is_file
|
- ~~is_file~~
|
||||||
4. string
|
4. string
|
||||||
- copy
|
- copy
|
||||||
- len
|
- len
|
||||||
- [ ] split
|
- ~~split~~
|
||||||
- [ ] replace
|
- ~~replace~~
|
||||||
- [ ] find
|
- ~~find~~
|
||||||
- [ ] parse_int
|
- ~~parse_int~~
|
||||||
- [ ] parse_float
|
- ~~parse_float~~
|
||||||
5. network
|
5. network
|
||||||
- get_ip
|
- get_ip
|
||||||
- IP_to_str
|
- IP_to_str
|
||||||
@ -37,8 +37,8 @@ This project for me just for fun to not spending time for routine operations
|
|||||||
- get_field
|
- get_field
|
||||||
7. [dnstoys](https://www.dns.toys/)
|
7. [dnstoys](https://www.dns.toys/)
|
||||||
- myip
|
- myip
|
||||||
- [ ] weather and other
|
- ~~weather and other~~
|
||||||
8. [ ] http
|
8. ~~http~~
|
||||||
9. [ ] json
|
9. ~~json~~
|
||||||
|
|
||||||
<sup>A lot of shit code included</sup>
|
<sup>A lot of shit code included</sup>
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -10,7 +10,7 @@ extrn exit
|
|||||||
|
|
||||||
|
|
||||||
section '.strtab'
|
section '.strtab'
|
||||||
filename db "/home/sweetbread/headers", 0
|
filename db "makefile", 0
|
||||||
|
|
||||||
|
|
||||||
section '.bss' writeable
|
section '.bss' writeable
|
||||||
@ -32,6 +32,7 @@ _start:
|
|||||||
push dword [file_]
|
push dword [file_]
|
||||||
call file.content
|
call file.content
|
||||||
call print.str
|
call print.str
|
||||||
|
call print.nl
|
||||||
|
|
||||||
push dword [file_]
|
push dword [file_]
|
||||||
call file.close
|
call file.close
|
||||||
|
Binary file not shown.
@ -21,4 +21,3 @@ main: ../../file.o ../../std.o ../../path.o ../../string.o
|
|||||||
|
|
||||||
clear:
|
clear:
|
||||||
rm main.o main
|
rm main.o main
|
||||||
|
|
||||||
|
@ -191,4 +191,3 @@ content:
|
|||||||
mov [ebp+2*4], eax
|
mov [ebp+2*4], eax
|
||||||
postlude
|
postlude
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user