1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
/* instrumentation */
#include<assert.h>
#include<string.h>
static int compteLettres (char const *ligne)
{
int compteur = 0;
while (*ligne != 0)
{
if (*ligne != ' ')
compteur++;
ligne++;
}
return compteur;
}
static int chaine (char const *ligne, char *tab, size_t size)
{
size_t i = 0;
while (*ligne == ' ')
ligne++;
while (*ligne != '\0')
{
if (!(isalpha (*ligne)))
return 1;
{
int lettre = *ligne;
ligne++;
assert (i < size - 1);
tab[i] = lettre;
}
i++;
while (*ligne == ' ' || *ligne == ',')
ligne++;
}
tab[i] = 0;
return 0;
}
int main (void)
{
char const entree[] = " x , z ";
int nb_lettres = compteLettres (entree);
if (nb_lettres != 0)
{
size_t const size = nb_lettres + 1;
char *tab = malloc (size);
if (tab != NULL)
{
memset (tab, '?', size);
if (chaine (entree, tab, size))
{
printf ("erreur \n");
return 1;
}
if (nb_lettres > 1)
{
printf ("'%s'\n", tab);
}
free (tab), tab = NULL;
}
}
return 0;
} |