morphisms: remove 'return 0;' at end since it is now added by default

This commit is contained in:
Michael Sippel 2025-04-03 16:37:46 +02:00
parent 3f1397735c
commit ef819b4711
Signed by: senvas
GPG key ID: F96CF119C34B64A6
11 changed files with 42 additions and 107 deletions

View file

@ -28,7 +28,6 @@ morph_string_as_utf8_to_ascii ()
}
}
*dst = 0;
return 0;
```
morph_string_as_ascii_to_utf32 ()
@ -39,7 +38,6 @@ morph_string_as_ascii_to_utf32 ()
```
while( *src ) { *dst++ = *src++; }
*dst = 0;
return 0;
```
morph_string_as_utf8_to_utf32 ()
@ -89,6 +87,4 @@ morph_string_as_utf8_to_utf32 ()
*dst++ = val;
*dst++ = 0;
return 0;
```