25 lines
490 B
C
25 lines
490 B
C
#pragma once
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <glib-2.0/glib.h>
|
|
#include <gtk-4.0/gtk/gtk.h>
|
|
|
|
extern GtkWidget *button_0;
|
|
extern GtkWidget *button_1;
|
|
extern GtkWidget *button_2;
|
|
extern GtkWidget *button_3;
|
|
extern GtkWidget *button_4;
|
|
extern GtkWidget *button_5;
|
|
|
|
void print_text(char *text);
|
|
|