Initial Windows port

This commit is contained in:
Asanka Herath
2009-07-22 15:55:45 -04:00
committed by Love Hornquist Astrand
parent 25a2ac726b
commit b1063ea8fc
361 changed files with 11994 additions and 1334 deletions

View File

@@ -51,10 +51,10 @@ struct example {
};
static struct example cases[] = {
{{}, 0, {}, 0},
{{0}, 0, {0}, 0},
{{0x0041}, 1, {0x0061}, 1},
{{0x0061}, 1, {0x0061}, 1},
{{0x00AD}, 1, {}, 0},
{{0x00AD}, 1, {0}, 0},
{{0x00DF}, 1, {0x0073, 0x0073}, 2}
};
@@ -95,3 +95,4 @@ main(void)
failures += try(&cases[i]);
return failures != 0;
}