mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-05 19:42:04 +02:00
21 lines
591 B
C
21 lines
591 B
C
/*************************************************************************
|
|
* (C) 2018 Bjoern Petersen and contributors.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*************************************************************************/
|
|
|
|
#ifndef __STRESS_H__
|
|
#define __STRESS_H__
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
void stress_functions(dc_context_t*);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* /extern "C" */
|
|
#endif
|
|
#endif /* __STRESS_H__ */
|