19 lines
287 B
C
19 lines
287 B
C
/*
|
|
* test.h
|
|
* Copyright (C) 2021 light <light@lightdeMBP>
|
|
*
|
|
* Distributed under terms of the MIT license.
|
|
*/
|
|
|
|
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
|
|
#include<math.h>
|
|
|
|
double get_sqrt(double var1);
|
|
|
|
void updateMem(unsigned int *all, unsigned int *fre, float *useage);
|
|
|
|
#endif /* !TEST_H */
|