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

ajout man

parent a42c16b1
Branches
No related tags found
No related merge requests found
Pipeline #20275 passed
...@@ -54,10 +54,14 @@ char name[] = {'P', 'a', 'u', 'l', '\0'}; ...@@ -54,10 +54,14 @@ char name[] = {'P', 'a', 'u', 'l', '\0'};
# Fonctions # Fonctions
- Il existe une grande quantités de fonction pour la manipulation de chaînes de caractères dans `string.h`. - Il existe une grande quantités de fonction pour la manipulation de chaînes de caractères dans `string.h`.
- Comment les trouver?
. . .
```bash
$ man 3 string
```
```bash
$ man 3 string
```
- Fonctions principales: - Fonctions principales:
```C ```C
...@@ -68,5 +72,3 @@ char name[] = {'P', 'a', 'u', 'l', '\0'}; ...@@ -68,5 +72,3 @@ char name[] = {'P', 'a', 'u', 'l', '\0'};
int strcmp(char *str1, char *str2); int strcmp(char *str1, char *str2);
``` ```
- Pour avoir la liste complète: `man string`.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment