mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-05-25 12:10:27 -04:00
15 lines
331 B
C
15 lines
331 B
C
/*
|
|
* Copyright (c) 2003-2010, Mark Borgerding. All rights reserved.
|
|
* This file is part of KISS FFT - https://github.com/mborgerding/kissfft
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* See COPYING file for more information.
|
|
*/
|
|
#ifndef PSTATS_H
|
|
#define PSTATS_H
|
|
|
|
void pstats_init(void);
|
|
void pstats_report(void);
|
|
|
|
#endif
|