mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
8 lines
107 B
C
8 lines
107 B
C
|
#ifndef PARSER_H
|
||
|
#define PARSER_H
|
||
|
#include "network.h"
|
||
|
|
||
|
network parse_network_cfg(char *filename);
|
||
|
|
||
|
#endif
|