mirror of
https://github.com/kingk85/uFTP.git
synced 2025-06-03 14:08:44 +03:00
31 lines
504 B
C
31 lines
504 B
C
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
/*
|
|
* File: logFunctions.h
|
|
* Author: ugo
|
|
*
|
|
* Created on 20 ottobre 2017, 21.41
|
|
*/
|
|
|
|
#ifndef LOGFUNCTIONS_H
|
|
#define LOGFUNCTIONS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
void printTimeStamp(void);
|
|
void makeTimeout(struct timespec *tsp, long minutes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* LOGFUNCTIONS_H */
|
|
|