c02 - KimTaebin-ai/study_posts GitHub Wiki
string νμ μ μ²λ¦¬ λ°©λ²κ³Ό string.h ν€λ νμΌμ ν¨μλ€μ λ€λ£¨λ λ¬Έμ
(ascii μ½λμ μ΄ν΄μ νμ© λ°©λ²λ μꡬν¨)
#include <unistd.h>
char *ft_strcpy(char *dest, char *src)
{
int i;
i = 0;
while (src[i] != '\0')
{
dest[i] = src[i];
i++;
}
dest[i] = '\0';
return (dest);
}
c02λΆν°λ stirng.h νμΌμ μλ ν¨μμ λν μ΄ν΄κ° νμν¨
ν΄λΉ ν¨μλ₯Ό μ§μ ꡬννλΌλ λ¬Έμ λ€μ΄ νμ΄λμ΄
string copy μ μ€μλ§. μ¦, λ¬Έμμ΄μ 볡μ¬νλ ν¨μ
string μ c00, 01 μμλ μ½κ° λ€λ€μ§λ§ charμ λ¬Έμ λ°°μ΄μ μλ―Έν¨
λ€λ§ λ¬Έμμ΄μ λμ \0 μ΄κΈ° λλ¬Έμ length μ μμλΈ ν μ΄κΈ°ν μμΌμ€μΌ ν¨
#include <unistd.h>
char *ft_strncpy(char *dest, char *src, unsigned int n)
{
unsigned int i;
i = 0;
while (i < n && src[i] != '\0')
{
dest[i] = src[i];
i++;
}
while (i < n)
{
dest[i++] = '\0';
}
return (dest);
}
μ΄μ λ¬Έμ μμ n μ΄ λΆμ ν¨μμ
n μ numberλ₯Ό λ»νλ©°
origin μ μλ λ¬Έμμ΄μ destλ‘ λ³΅μ¬λ₯Ό νλλ°, n λ§νΌ 볡μ¬νλ ν¨μλΌλ λ»
#include <unistd.h>
int ft_str_is_alpha(char *str)
{
int i;
int is_true;
i = 0;
is_true = 1;
while (str[i] != '\0')
{
if (str[i] >= 'a' && str[i] <= 'z')
i++;
else if (str[i] >= 'A' && str[i] <= 'Z')
i++;
else
is_true = 0;
break ;
}
return (is_true);
}
μνλ²³μ΄λ€ = 1, 곡백μ΄λ€ = 1, μλλ€ = 0
μμ€ν€ μ½λ μ체λ₯Ό λ£μ΄λ λκΈ΄νλ c00 μμ νμλ κ²μ²λΌ
ββ λ₯Ό ν΅ν΄ ν΄κ²° κ°λ₯ν¨
#include <unistd.h>
int ft_str_is_numeric(char *str)
{
int i;
int is_num;
i = 0;
is_num = 1;
while (str[i] != '\0')
{
if (str[i] < '0' || str[i] > '9')
{
is_num = 0;
break ;
}
i++;
}
return (is_num);
}
#include <unistd.h>
int ft_str_is_lowercase(char *str)
{
int i;
int is_lowercase;
i = 0;
is_lowercase = 1;
while (str[i] != '\0')
{
if (str[i] < 'a' || str[i] > 'z')
{
is_lowercase = 0;
break ;
}
i++;
}
return (is_lowercase);
}
#include <unistd.h>
int ft_str_is_uppercase(char *str)
{
int i;
int is_uppercase;
i = 0;
is_uppercase = 1;
while (str[i] != '\0')
{
if (str[i] < 'A' || str[i] > 'Z')
{
is_uppercase = 0;
break ;
}
i++;
}
return (is_uppercase);
}
#include <unistd.h>
int ft_str_is_printable(char *str)
{
int i;
int is_printable;
is_printable = 1;
i = 0;
while (str[i] != '\0')
{
if (str[i] < 32 || str[i] > 126)
{
is_printable = 0;
break ;
}
i++;
}
return (is_printable);
}
printable μ μλ―Έλ₯Ό μ²μμ λ μ¬λ¦¬κΈ° μ΄λ €μΈ μ μλλ° κ΅¬κΈλ§μΌλ‘ λ¨λ²μ μ°Ύμλλ€
μμ€ν€ ν μ΄λΈμ 보면 32(곡백) ~ 126κΉμ§ μ λ ₯ κ°λ₯ν λ¬Έμμ
쑰건μμ ν΄λΉ μμ€ν€μ½λλ‘ μμ±νλ©΄ μ½κ² νμ΄κ°λ₯ν λ¬Έμ
#include <unistd.h>
char *ft_strupcase(char *str)
{
int i;
int tr;
i = 0;
tr = 'A' - 'a';
while (str[i] != '\0')
{
if (str[i] >= 'a' && str[i] <= 'z')
{
str[i] += tr;
}
i++;
}
return (str);
}
07, 08λ¬Έμ μμ μλ¬Έμa - λλ¬ΈμA κ°μ λΊ κ°μ μμλ‘ μ§μ΄ λ£λ λΆλ€μ΄ λ§μ΄ μμ
λλ μ΅μ΄ μ μΆμμ 32 κ°μ ν΅μΌλ‘ μ§μ΄ λ£μλλ°, 'λ§€μ§ λλ²' μ΄μκ° λ°μν μ μλ€κ³ νλ€
μμΌλ‘ νΈλ λ¬Έμ μμ λ§μ λμμ΄ λμμ
#include <unistd.h>
char *ft_strlowcase(char *str)
{
int i;
int tr;
i = 0;
tr = 'a' - 'A';
while (str[i] != '\0')
{
if (str[i] >= 'A' && str[i] <= 'Z')
{
str[i] += tr;
}
i++;
}
return (str);
}
#include <unistd.h>
int is_char(char c)
{
return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0'
&& c <= '9'));
}
void capitalize_char(char *c, int *new_word)
{
if (*new_word && *c >= 'a' && *c <= 'z')
*c -= ('a' - 'A');
else if (!*new_word && *c >= 'A' && *c <= 'Z')
*c += ('a' - 'A');
*new_word = 0;
}
char *ft_strcapitalize(char *str)
{
int i;
int new_word;
i = 0;
new_word = 1;
while (str[i] != '\0')
{
if (is_char(str[i]))
capitalize_char(&str[i], &new_word);
else
new_word = 1;
i++;
}
return (str);
}
λ¨μ΄ λ¨μλ‘ κ΅¬λΆμ§μ΄ λ¨μ΄μ 첫 λ²μ§Έ κΈμλ λλ¬Έμλ‘ λ³κ²½, 첫λ²μ§Έ κΈμκ° μλλΌλ©΄ μλ¬Έμλ‘ λ³κ²½
λ¨μ΄μ κΈ°μ€μ λμ΄μ°κΈ°λ‘λ§ κ΅¬λΆ μ§λλ€κ³ μ°©κ°ν μ μλ€.
κ·Έλ¬λ μΆλ ₯ κ²°κ³Όλ₯Ό μμΈν 보면 νΉμλ¬Έμ μ΄νλ‘λ λλ¬Έμλ‘ λ³κ²½λλ κ±Έ νμΈν μ μλ€
is_char ν¨μλ₯Ό ν΅ν΄μ μ
λ ₯λ κ°μ΄ aAzZ, 09 κΉμ§μ κ°μ΄ μλλΌλ©΄ νΉμλ¬Έμλ‘ νλ¨. Flag ꡬν
μ ν¨μλ₯Ό ν΅ν΄ μ»μ Flag κ°μΌλ‘ capitalize_char μμ λμλ¬Έμ λ³κ²½
ν΅κ³‘μ λ²½ μμμ΄λ€.
μ΄μ κΉμ§ νκ· μ μΈ μ§μ€λ ₯, ν μ νλ μκ°μ λ°λΌ μ λ°λκ° μ ν΄μ‘λ€λ©΄
μ¬κΈ°μλΆν°λ 09~11κΉμ§ μΌλ§λ μλνμκ° μ λλμ λ°λΌ μ λ°λκ° κ²°μ λλ€.
#include <unistd.h>
unsigned int ft_strlcpy(char *dest, char *src, unsigned int size)
{
unsigned int i;
unsigned int len;
i = 0;
len = 0;
while (src[i] != '\0')
{
i++;
}
len = i;
if (size == 0)
{
return (len);
}
i = 0;
while (src[i] != '\0' && i + 1 < size)
{
dest[i] = src[i];
i++;
}
dest[i] = '\0';
return (len);
}
μμμ νλ strcpy μ λμΌν¨
λ€λ§ l (= length) κ° λ€μ΄κ°
λν λ§μ§λ§μ \0 κ°μ 보μ₯ν΄μ€
size -1 λ§νΌ 볡μ¬ν λ€ srcμ κΈΈμ΄λ₯Ό λ°ννλ ν¨μμ
μ¦ νλ μν μ΄ ν¬κ² 2κ°λΌλ λ»
- return μ srcμ κΈΈμ΄λ₯Ό λ°ν
- sizeλ§νΌ srcμ κ°μ destλ‘ λ³΅μ¬
#include <unistd.h>
void ft_putstr_non_printable(char *str)
{
int i;
int n1;
int n2;
char *hex;
i = 0;
hex = "0123456789abcdef";
while (str[i] != '\0')
{
if ((unsigned char)str[i] < 32 || (unsigned char)str[i] > 126)
{
n1 = (unsigned char)str[i] / 16;
n2 = (unsigned char)str[i] % 16;
write(1, "\\", 1);
write(1, &hex[n1], 1);
write(1, &hex[n2], 1);
}
else
{
write(1, &str[i], 1);
}
i++;
}
}
16μ§μμ΄λ―λ‘ 2μ리μ νν νμ
λν λ¬Έμ λ₯Ό μμΈν μ½μ΄λ³΄λ©΄ lowercaseλΌκ³ λͺ μκ° λμ΄μλ€!
#include <unistd.h>
void print_hex(unsigned char c)
{
char *hex_digits;
hex_digits = "0123456789abcdef";
write(1, &hex_digits[c / 16], 1);
write(1, &hex_digits[c % 16], 1);
}
void print_address(unsigned long addr)
{
char hex_digits[16];
int i;
int j;
i = 15;
j = 0;
while (i >= 0)
{
hex_digits[i--] = "0123456789abcdef"[addr % 16];
addr /= 16;
}
while (j < 16)
{
write(1, &hex_digits[j], 1);
j++;
}
}
void print_memory_line(unsigned char *addr, unsigned int size)
{
unsigned int i;
i = 0;
while (i < 16)
{
if (i < size)
print_hex(addr[i]);
else
write(1, " ", 2);
if (i % 2)
write(1, " ", 1);
i++;
}
i = 0;
while (i < size)
{
if (addr[i] >= 32 && addr[i] <= 126)
write(1, &addr[i], 1);
else
write(1, ".", 1);
i++;
}
}
void *ft_print_memory(void *addr, unsigned int size)
{
unsigned int i;
unsigned int line_size;
if (size == 0)
return (addr);
i = 0;
while (i < size)
{
print_address((unsigned long)(addr + i));
write(1, ": ", 2);
if (size - i < 16)
line_size = size - i;
else
line_size = 16;
print_memory_line((unsigned char *)addr + i, line_size);
write(1, "\n", 1);
i += 16;
}
return (addr);
}
κ± μ΄λλ€μ μ§λ² λ³νμ μ¬λν¨;;