Skip to content

Instantly share code, notes, and snippets.

View makiftasova's full-sized avatar

Mehmet Akif TAŞOVA makiftasova

  • Istanbul, Turkey
View GitHub Profile
From 4a4fc1a5481afdbb1238e5edca09b17a25c7cab0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mehmet=20Akif=20TA=C5=9EOVA?= <[email protected]>
Date: Mon, 16 Jan 2017 02:06:10 +0300
Subject: [PATCH] updating for stockfish 8
---
.SRCINFO | 6 +++---
PKGBUILD | 5 +++--
2 files changed, 6 insertions(+), 5 deletions(-)
#include <stdio.h> /* printf, fgets */
#include <stdlib.h> /* atoi */
#include <string.h>
/**
* atoi_r : a wrapper for atoi.
* atoi from stdlib.h has undefined behaviour if input does not contain
* a valid integer value. this function handles that undefined behaviour
* for non negative integers.
*