Modif commentaire
This commit is contained in:
parent
3655f20c53
commit
71d836564a
1 changed files with 3 additions and 3 deletions
|
@ -7,8 +7,8 @@
|
||||||
void deux_partie(FILE *ptr)
|
void deux_partie(FILE *ptr)
|
||||||
{
|
{
|
||||||
int find = 0, tmp;
|
int find = 0, tmp;
|
||||||
int nb_data = 0; // est incrémenté si arg bon
|
int nb_data = 0; /* est incrémenté si arg bon */
|
||||||
// ne pas changer l’ordre des deux tableaux sinon ça casse (jsp pk)
|
/* ne pas changer l’ordre des deux tableaux sinon ça casse (jsp pk) */
|
||||||
char value[11];
|
char value[11];
|
||||||
char key[3];
|
char key[3];
|
||||||
char *tmp_char = NULL;
|
char *tmp_char = NULL;
|
||||||
|
@ -56,7 +56,7 @@ void deux_partie(FILE *ptr)
|
||||||
}
|
}
|
||||||
else if (!strncmp(key, "hcl", 3))
|
else if (!strncmp(key, "hcl", 3))
|
||||||
{
|
{
|
||||||
//comme le 1er char est :, on doit tout décaler de 1
|
/* comme le 1er char est :, on doit tout décaler de 1 */
|
||||||
if (value[1] == '#' && strlen(value) == 8)
|
if (value[1] == '#' && strlen(value) == 8)
|
||||||
{
|
{
|
||||||
int i = 2;
|
int i = 2;
|
||||||
|
|
Loading…
Reference in a new issue