oups...
This commit is contained in:
parent
119a61c0e5
commit
10b2f53b85
@ -18,14 +18,14 @@ printf("%c %02X [%-20s] %s\n", sref->key, sref->flags, sref->text,
|
|||||||
sref->path);
|
sref->path);
|
||||||
}
|
}
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
void liste_des_samples(void)
|
void affiche_liste_des_samples(SampleRef samples[])
|
||||||
{
|
{
|
||||||
int foo;
|
int foo;
|
||||||
|
|
||||||
for (foo=0; foo<26; foo++) {
|
for (foo=0; foo<26; foo++) {
|
||||||
printf("%2d %02x %-30s %s\n", foo, the_samples[foo].key,
|
printf("%2d %02x %-30s %s\n", foo, samples[foo].key,
|
||||||
the_samples[foo].text,
|
samples[foo].text,
|
||||||
the_samples[foo].path);
|
samples[foo].path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
|
|
||||||
void affiche_un_sample(SampleRef *sref, int options);
|
void affiche_un_sample(SampleRef *sref, int options);
|
||||||
|
|
||||||
|
void affiche_liste_des_samples(SampleRef samples[]);
|
||||||
|
|
||||||
int decode_la_ligne(char *line, SampleRef *sref);
|
int decode_la_ligne(char *line, SampleRef *sref);
|
||||||
int lecture_liste_des_samples(char *fname, SampleRef *array);
|
int lecture_liste_des_samples(char *fname, SampleRef *array);
|
||||||
|
|
||||||
|
@ -47,10 +47,7 @@ fprintf(stderr, "argc = %d, optind = %d\n", argc, optind);
|
|||||||
foo = lecture_liste_des_samples(listname, the_samples);
|
foo = lecture_liste_des_samples(listname, the_samples);
|
||||||
fprintf(stderr,"retour lecture liste '%s' -> %d\n", listname, foo);
|
fprintf(stderr,"retour lecture liste '%s' -> %d\n", listname, foo);
|
||||||
|
|
||||||
for (foo=0; foo<26; foo++) {
|
affiche_liste_des_samples(the_samples);
|
||||||
printf("%3d %02x %s\n", foo, the_samples[foo].key,
|
|
||||||
the_samples[foo].text);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user