From 71f22dfa33e27bbab19575f11167969800bd5e6f Mon Sep 17 00:00:00 2001 From: "yassin.elhakoun" <yassin.el-hakouni@etu.hesge.ch> Date: Thu, 16 Nov 2023 18:35:40 +0100 Subject: [PATCH] =?UTF-8?q?Update=20structs.md=20(unsinged=20int=20chang?= =?UTF-8?q?=C3=A9=20en=20unsigned=20int)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slides/structs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/structs.md b/slides/structs.md index b826922..3827ab6 100644 --- a/slides/structs.md +++ b/slides/structs.md @@ -59,7 +59,7 @@ struct fraction frac; // déclaration de frac - `typedef`{.C} permet de définir un nouveau type. ```C - typedef unsinged int uint; + typedef unsigned int uint; typedef struct fraction fraction_t; typedef struct fraction { int32_t num, denom; -- GitLab