mirror of
https://github.com/augustin64/projet-tipe
synced 2025-03-14 14:55:22 +01:00
17 lines
282 B
C
17 lines
282 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "../../colors.h"
|
||
|
#include "struct.h"
|
||
|
|
||
|
#ifndef DEF_UTILS_H
|
||
|
#define DEF_UTILS_H
|
||
|
|
||
|
/*
|
||
|
* Vérifie si deux réseaux sont égaux
|
||
|
*/
|
||
|
bool equals_networks(Network* network1, Network* network2);
|
||
|
|
||
|
#endif
|