Files
ArduinoCore-AT32F4/ArduinoCore-AT32F403A/cores/arduino/WMath.h

13 lines
185 B
C
Raw Normal View History

2022-07-10 21:37:33 +08:00
#ifndef __WMATH_H
#define __WMATH_H
extern "C" {
#include "stdlib.h"
}
void randomSeed(unsigned long seed);
long random(long howbig);
long random(long howsmall, long howbig);
#endif