1
0
mirror of https://github.com/abakh/nbsdgames.git synced 2025-02-02 15:07:27 -05:00
This commit is contained in:
Your Name 2021-10-15 11:35:57 +03:30
parent d6f5041f4f
commit adfc09336e

View File

@ -112,9 +112,9 @@ bool isvalid(byte ty,byte tx,char board[s][s]){ //is it allowed to place that ch
return 1;
}
void swap(char *a,char *b){
char s=*a;
char sw=*a;
*a=*b;
*b=s;
*b=sw;
}
void random_order(char a[size]){
byte i;