14 lines
334 B
C
14 lines
334 B
C
/*
|
|
* Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
|
|
* All rights reserved.
|
|
* Use of this source code is governed by a MIT-style
|
|
* license that can be found in the LICENSE file.
|
|
*/
|
|
#ifndef __TIMING_H_
|
|
#define __TIMING_H_
|
|
|
|
extern double getTimeStamp(void);
|
|
extern double getTimeResolution(void);
|
|
|
|
#endif // __TIMING_H_
|