Archived
1
0

Spaces to tabs

This commit is contained in:
Sweet Bread 2022-11-06 18:21:21 +03:00
parent c163efd83d
commit 20a9a96dc7
16 changed files with 399 additions and 400 deletions

View File

@ -4,8 +4,8 @@ This project for me just for fun to not spending time for routine operations
- print
- str
- int
- [ ] float
- [ ] hex
- ~~float~~
- ~~hex~~
- char
- bin
- nl
@ -14,21 +14,21 @@ This project for me just for fun to not spending time for routine operations
- open
- close
- content
- [ ] size
- [ ] next_line
- ~~size~~
- ~~next_line~~
3. path
- filename
- [ ] join
- [ ] is_dir
- [ ] is_file
- ~~join~~
- ~~is_dir~~
- ~~is_file~~
4. string
- copy
- len
- [ ] split
- [ ] replace
- [ ] find
- [ ] parse_int
- [ ] parse_float
- ~~split~~
- ~~replace~~
- ~~find~~
- ~~parse_int~~
- ~~parse_float~~
5. network
- get_ip
- IP_to_str
@ -37,8 +37,8 @@ This project for me just for fun to not spending time for routine operations
- get_field
7. [dnstoys](https://www.dns.toys/)
- myip
- [ ] weather and other
8. [ ] http
9. [ ] json
- ~~weather and other~~
8. ~~http~~
9. ~~json~~
<sup>A lot of shit code included</sup>

Binary file not shown.

View File

@ -10,7 +10,7 @@ extrn exit
section '.strtab'
filename db "/home/sweetbread/headers", 0
filename db "makefile", 0
section '.bss' writeable
@ -32,6 +32,7 @@ _start:
push dword [file_]
call file.content
call print.str
call print.nl
push dword [file_]
call file.close

Binary file not shown.

View File

@ -21,4 +21,3 @@ main: ../../file.o ../../std.o ../../path.o ../../string.o
clear:
rm main.o main

View File

@ -191,4 +191,3 @@ content:
mov [ebp+2*4], eax
postlude
ret