mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
23 lines
626 B
C
23 lines
626 B
C
/*
|
|
* 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 <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
int val1;
|
|
printf("%d\n", sscanf("10 20 30 40", "%*lld %*d %d", &val1));
|
|
printf("%d\n", val1);
|
|
|
|
int64_t large, val2;
|
|
printf("%d\n", sscanf("1000000 -1125899906842620 -123 -1073741823",
|
|
"%lld %*lld %lld %*d", &large, &val2));
|
|
printf("%lld,%lld\n", large, val2);
|
|
|
|
return 0;
|
|
}
|