mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-16 07:31:55 -04:00
14 lines
233 B
C
14 lines
233 B
C
#ifndef MISC_H
|
|
#define MISC_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/ksys.h>
|
|
|
|
int getRandomNumber(int _min, int _max);
|
|
void intToStr(int num, int ndigits, char* result);
|
|
int getTimeStamp();
|
|
|
|
#endif
|