/* * 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 #include int main() { const char *STRING = "1 -101 +1011"; char *end_char; // defined base long long int l4 = strtoll(STRING, &end_char, 2); long long int l5 = strtoll(end_char, &end_char, 2); long long int l6 = strtoll(end_char, NULL, 2); printf("%d%d%d\n", l4 == 1, l5 == -5, l6 == 11); return 0; }