Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
piumarta
/
ccmeta
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Add some typedefs to proceed past non-inclusion of header files.
master
Ian Piumarta
2 anni fa
parent
91d5e4af0b
commit
6145288153
4 ha cambiato i file
con
11 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+4
-0
tests/c/00104.c
+2
-0
tests/c/00187.c
+3
-0
tests/c/00189.c
+2
-0
tests/c/00220.c
+ 4
- 0
tests/c/00104.c
Vedi File
@ -1,5 +1,9 @@
#
include
<stdint.h>
typedef
int
int32_t
;
typedef
long
int64_t
;
int
main
(
)
{
+ 2
- 0
tests/c/00187.c
Vedi File
@ -1,5 +1,7 @@
#
include
<stdio.h>
typedef
struct
FILE
FILE
;
int
main
(
)
{
FILE
*
f
=
fopen
(
"
fred.txt
"
,
"
w
"
)
;
+ 3
- 0
tests/c/00189.c
Vedi File
@ -1,5 +1,8 @@
#
include
<stdio.h>
typedef
struct
FILE
FILE
;
FILE
*
stdout
;
int
fred
(
int
p
)
{
printf
(
"
yo %d
\n
"
,
p
)
;
+ 2
- 0
tests/c/00220.c
Vedi File
@ -2,6 +2,8 @@
#
include
<stdio.h>
#
include
<wchar.h>
typedef
int
wchar_t
;
int
main
(
)
{
wchar_t
s
[
]
=
L
"
hello$$你好¢¢世界€€world
"
;
Scrivi
Anteprima
Caricamento…
Annulla
Salva