diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-14 15:47:21 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-14 15:47:21 +0100 |
| commit | 94d61d8aaee7a3df0dc1f055e27e0f4484cb3ffa (patch) | |
| tree | 932c0e5d40822e8d98ad04485c6f7fc088c31c09 /ft_strlen.s | |
| parent | 6808cd0fbd3edf68422228d2ee6a41ad70f971d5 (diff) | |
| download | libasm-94d61d8aaee7a3df0dc1f055e27e0f4484cb3ffa.tar.gz libasm-94d61d8aaee7a3df0dc1f055e27e0f4484cb3ffa.tar.bz2 libasm-94d61d8aaee7a3df0dc1f055e27e0f4484cb3ffa.zip | |
Linux version without '_' prefix
Diffstat (limited to 'ft_strlen.s')
| -rw-r--r-- | ft_strlen.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ft_strlen.s b/ft_strlen.s index 2f2dd26..42cba09 100644 --- a/ft_strlen.s +++ b/ft_strlen.s @@ -10,10 +10,10 @@ ; ; ; **************************************************************************** ; -global _ft_strlen +global ft_strlen ; int ft_strlen(char *); -_ft_strlen: +ft_strlen: mov eax, -1 FT_STRLEN_LOOP: inc eax |
