My Project
Loading...
Searching...
No Matches
az_strcmp.c
Go to the documentation of this file.
1// kernel_lib_printf_functions
2/*
3 * Kernel Lib Printf Functions
4 *
5 * Maintainer: Park Jiwoo
6 *
7 * Copyright (C) 2024 Park-Jiwoo
8 *
9 */
10#include "kernel_pr_he.h"
11
12int az_strcmp(const char *s1, const char *s2)
13{
14 int i;
15 char *my_s1;
16 char *my_s2;
17
18 i = 0;
19 my_s1 = (char *)s1;
20 my_s2 = (char *)s2;
21
22 while (my_s1[i] && my_s2[i] && my_s1[i] == my_s2[i])
23 i++;
24
25 return (my_s1[i] - my_s2[i]);
26}
int az_strcmp(const char *s1, const char *s2)
Definition az_strcmp.c:12