mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
20 lines
550 B
C
Vendored
20 lines
550 B
C
Vendored
/*
|
|
* Copyright 2016 The Emscripten Authors. All rights reserved.
|
|
* Emscripten is available under two separate licenses, the MIT license and the
|
|
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
static const struct {
|
|
unsigned char left;
|
|
unsigned char right;
|
|
} prioritah[] = {{6, 6}, {6, 6}, {7, 95}, {7, 7}};
|
|
|
|
int main() {
|
|
printf("*%d,%d\n", prioritah[1].left, prioritah[1].right);
|
|
printf("%d,%d*\n", prioritah[2].left, prioritah[2].right);
|
|
return 0;
|
|
}
|