This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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. | |
* |
OlderNewer