added random number generation algorithms

This commit is contained in:
2022-10-24 03:29:42 +06:00
parent 0e6a0f6482
commit f33804f5b8
20 changed files with 810 additions and 3 deletions

View File

@@ -13,6 +13,7 @@ char* errname(ErrorId err){
case ERR_ENDOFSTR: return "ERR_ENDOFSTR";
case ERR_KEYNOTFOUND: return "ERR_KEYNOTFOUND";
case ERR_FORMAT: return "ERR_FORMAT";
case ERR_UNEXPECTEDVAL: return "ERR_UNEXPECTEDVAL";
default: return "UNKNOWN_ERROR";
}
}