Using xml

This commit is contained in:
AnonymusRaccoon
2019-12-09 12:11:10 +01:00
parent afa481e5b2
commit cffa7693be
7 changed files with 42 additions and 22 deletions
Submodule lib/gamacon updated: 83a9b8f9ef...ee89f69e7a
+2
View File
@@ -8,6 +8,8 @@
int count_valid_queens_placements(int n);
char *my_strchr(const char *str, char c);
int my_compute_power_it(int n, int p);
int my_compute_power_rec(int n, int p);
+17
View File
@@ -0,0 +1,17 @@
/*
** EPITECH PROJECT, 2019
** MUL_my_runner_2019
** File description:
** my_strchr
*/
#include "stddef.h"
char *my_strchr(char *str, char c)
{
for (int i = 0; str[i]; i++) {
if (str[i] == c)
return (&str[i]);
}
return (NULL);
}
Submodule
+1
Submodule lib/xmlparser added at 48beb9a721