Added prefix 'mm_'

This commit is contained in:
arcan1s
2013-08-03 04:41:20 +04:00
parent e9e0e82c4d
commit ae379fd22d
96 changed files with 44 additions and 44 deletions

26
mm_statgen/src/graph.h Normal file
View File

@ -0,0 +1,26 @@
/**
* @file
*/
#ifndef GRAPH_H
#define GRAPH_H
/**
* @fn graph_analyze
*/
/**
* @fn check_cycle
*/
/**
* @fn check_cycle_size
*/
/**
* @fn check_tail
*/
int graph_analyze (const int, const int *, const int, int *);
int check_cycle (const int, const int *);
int check_cycle_size (const int, const int *, const int, int *);
int check_tail (const int *);
#endif /* GRAPH_H */