Je comprends!
Au fait, si kk1 vx participer au projet, je suis d'accord!
Y'a moyen de faire de très bons trucs...
deadbird a écrit :
Pourquoi pas? 1.je ne suis pas capable d'écrire une routine de compression (suffisemment puissante)
Au fait, je justifie mon dernier post, par un exemple
typedef struct {
int a, b, c;
} TROISNOMBRES;
TROISNOMBRES tn; tn = {1, 2, 3, 4}; //TIFS ne sais pas faire ca....

unknown@K /e/TI-89/Compilers/tigcc/Projects
$ cat test5.c
// C Source File
#define USE_TI89 // Compile for TI-89
#define USE_TI92PLUS // Compile for TI-92 Plus
#define USE_V200 // Compile for V200
#include <tigcclib.h> // Include All Header Files
// Main Function
void _main(void)
{
typedef struct {
int a, b, c;
} TROISNOMBRES;
TROISNOMBRES tn;
tn = {1, 2, 3, 4}; //TIFS ne sais pas faire ca....
}
unknown@K /e/TI-89/Compilers/tigcc/Projects
$ tigcc --version
GCC.EXE (GCC) 3.3 20030421 (TIGCC prerelease)
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
unknown@K /e/TI-89/Compilers/tigcc/Projects
$ tigcc -Os -Wall -W test5.c
test5.c: In function `_main':
test5.c:17: error: parse error before '{' token
unknown@K /e/TI-89/Compilers/tigcc/Projects
$ diff -u test5.old test5.c
--- test5.old Thu Apr 24 02:16:12 2003
+++ test5.c Thu Apr 24 02:16:24 2003
@@ -14,5 +14,5 @@
} TROISNOMBRES;
TROISNOMBRES tn;
-tn = {1, 2, 3, 4}; //TIFS ne sais pas faire ca....
+tn = (TROISNOMBRES){1, 2, 3, 4}; //TIFS ne sais pas faire ca....
}
unknown@K /e/TI-89/Compilers/tigcc/Projects
$ tigcc -Os -Wall -W test5.c
test5.c: In function `_main':
test5.c:17: warning: excess elements in struct initializer (near initialization for `(anonymous)')
Linked test5 - Size: 193 bytes
// C Source File
#define USE_TI89 // Compile for TI-89
#define USE_TI92PLUS // Compile for TI-92 Plus
#define USE_V200 // Compile for V200
#include <tigcclib.h> // Include All Header Files
// Main Function
void _main(void)
{
typedef struct {
int a, b, c;
} TROISNOMBRES;
TROISNOMBRES tn={1, 2, 3, 4}; //TIFS devrait savoir faire ca....
}
)
