Use c headers

This commit is contained in:
Alexander Batalov 2022-05-29 16:11:42 +03:00
parent 9ab1edf24b
commit daddb86914
4 changed files with 4 additions and 4 deletions

View File

@ -62,8 +62,8 @@
#include <unistd.h> // access
#endif
#include <cstring> // strcpy, strncmp
#include <stdio.h>
#include <string.h>
#define HELP_SCREEN_WIDTH (640)
#define HELP_SCREEN_HEIGHT (480)

View File

@ -32,7 +32,7 @@
#include <assert.h>
#include <stdio.h>
#include <cstring> // memset, strcpy
#include <string.h>
#define GAME_DIALOG_WINDOW_WIDTH 640
#define GAME_DIALOG_WINDOW_HEIGHT 480

View File

@ -28,8 +28,8 @@
#include "tile.h"
#include "window_manager.h"
#include <cstring> // memcpy, strcpy
#include <stdio.h>
#include <string.h>
// The width of connectors in the indicator box.
//

View File

@ -36,8 +36,8 @@
#include "window_manager.h"
#include <assert.h>
#include <cstring> // memcpy, strcpy
#include <stdio.h>
#include <string.h>
#include <algorithm>