This commit is contained in:
Павел Родионов
2025-11-21 18:55:21 +07:00
parent 5cbfe19d48
commit ca035a9c08
13 changed files with 408 additions and 12 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef FUNC
#define FUNC
#include <stdio.h>
#include <string.h>
#include <wchar.h>
#include <locale.h>
#define COL 10
#define ROW 10
// GET
int mainget(void);
int numget(void);
int getsymb(wchar_t *buff);
// MASSIVE
void seeMassive(wchar_t (*massive)[COL]);
void setMassive(int x, wchar_t (*massive)[COL]);
void func(int x, wchar_t (*massive)[COL]);
// MENU
void helpMenu(void);
void setMenu(void);
void funcMenu(void);
// SPECIAL
void clear(void);
int flush(void);
int end(int c);
#endif