26 lines
419 B
C
26 lines
419 B
C
/*
|
|
* NewOswan
|
|
* log.h:
|
|
* Based on the original Oswan-unix
|
|
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
|
|
*
|
|
*/
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __LOG_H__
|
|
#define __LOG_H__
|
|
|
|
int log_init(char *path);
|
|
FILE *log_get(void);
|
|
void log_done(void);
|
|
|
|
#endif
|
|
|