From 87da9ce03c5e2ed85c1ef61d6f0ac7613358e4ee Mon Sep 17 00:00:00 2001 From: hanez Date: Thu, 9 Oct 2025 00:43:17 +0200 Subject: [PATCH] Went back to C99. No need for C11. (0.26.4) --- CMakeLists.txt | 4 ++-- README.md | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 88ef2b8..14a029a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) -project(fun VERSION 0.26.3 LANGUAGES C) +project(fun VERSION 0.26.4 LANGUAGES C) -set(CMAKE_C_STANDARD 11) +set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) include(GNUInstallDirs) diff --git a/README.md b/README.md index 98552b5..9bfb908 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,15 @@ Fun is and will ever be 100% free under the terms of the [Apache-2.0 License](ht - Joy in coding - Fun! +### Extras + +- PC/SC smart card support builtin (optional) + ## Characteristics - Dynamic and optionally statically typed - Type safety -- Written in C (C11) and Fun +- Written in C (C99) and Fun - Internal libs are written with no_camel_case even when written in Fun, except class names - Only a minimal function set is written in C, and most other core functions and libraries are implemented in Fun