myCompiler
English
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
R
@ryu
strlcpy
C
1 year ago
#include <stdio.h> #include <string.h> #include <assert.h> unsigned int len(char* str) { int i; i = 0; while (str[i] != '\0')
ft_atoi
C
1 year ago
#include <stdio.h> #include <string.h> #include <assert.h> #include <stdlib.h> int translate_number(char *str, int size) { int digit = 1; int i;
ft_putnbr
C
1 year ago
#include <stdio.h> #include <assert.h> #include <string.h> void print(int nb) { printf("%c", nb + '0'); }
strstr
C
1 year ago
#include <stdio.h> #include <string.h> #include <assert.h> int len(char* str) { int i = 0; while (str[i] != '\0') {
ft_strncat
C
1 year ago
#include <stdio.h> #include <assert.h> #include <string.h> unsigned int len(char* str) { int i; i = 0; while (str[i] != '\0')
strlcat
C
1 year ago
#include <stdio.h> #include <assert.h> #include <string.h> unsigned int len(char* str) { unsigned int i; i = 0; while (str[i] != '\0') {
strncmp
C
1 year ago
#include <stdio.h> #include <string.h> #include <assert.h> int ft_strncmp(char* s1, char* s2, unsigned int n) { unsigned int i; unsigned int i_len; i = 0;
ft_strcmp
C
1 year ago
#include <stdio.h> #include <string.h> #include <assert.h> unsigned int len(char* str) { unsigned int i; i = 0; while (str[i] != '\0')
ft_strcat
C
1 year ago
#include <stdio.h> #include <string.h> #include <assert.h> unsigned int len(char* str) { int i = 0; while (str[i] != '\0') {
Previous
Next page