Skip to content
Snippets Groups Projects
Commit b4a94fcb authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'master' into 'master'

Update structs.md (unsinged int changé en unsigned int)

See merge request !5
parents 1e3e45a0 f53d9f31
No related branches found
No related tags found
1 merge request!5Update structs.md (unsinged int changé en unsigned int)
Pipeline #27295 passed
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment