All: rename every function from UpperCamelCase to snake_case

This was a mess since I didn't know which to use but now I decided
to go with snake_case :)
This commit is contained in:
Bananymous
2023-02-01 21:05:44 +02:00
parent 4faa662a59
commit 9b8de5025a
50 changed files with 737 additions and 709 deletions

View File

@@ -9,7 +9,7 @@
int putchar(int c)
{
#if defined(__is_libk)
Kernel::Panic("Please use kprint() instead of stdio");
Kernel::panic("Please use kprint() instead of stdio");
#else
abort();
#endif

View File

@@ -9,7 +9,7 @@ __attribute__((__noreturn__))
void abort(void)
{
#if defined(__is_libk)
Kernel::Panic("abort()");
Kernel::panic("abort()");
#else
printf("abort()\n");
#endif