Changeset 5a6c28d1 in mainline
- Timestamp:
- 2018-06-13T15:50:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 39f84ce4
- Parents:
- f47a905
- git-author:
- Jiri Svoboda <jiri@…> (2018-06-12 17:50:36)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-06-13 15:50:53)
- Location:
- uspace/lib
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/stdio/scanf.c
rf47a905 r5a6c28d1 624 624 v = 0; 625 625 do { 626 digit = digit_value(c); // XXX626 digit = digit_value(c); 627 627 if (digit >= base) 628 628 break; … … 1266 1266 } 1267 1267 1268 int xxvfscanf(FILE *f, const char *fmt, va_list ap)1268 int vfscanf(FILE *f, const char *fmt, va_list ap) 1269 1269 { 1270 1270 const char *cp; … … 1323 1323 } 1324 1324 1325 int xxfscanf(FILE *f, const char *fmt, ...)1325 int fscanf(FILE *f, const char *fmt, ...) 1326 1326 { 1327 1327 va_list args; … … 1329 1329 1330 1330 va_start(args, fmt); 1331 rc = xxvfscanf(f, fmt, args);1331 rc = vfscanf(f, fmt, args); 1332 1332 va_end(args); 1333 1333 … … 1335 1335 } 1336 1336 1337 int xxvscanf(const char *fmt, va_list ap)1338 { 1339 return xxvfscanf(stdin, fmt, ap);1340 } 1341 1342 int xxscanf(const char *fmt, ...)1337 int vscanf(const char *fmt, va_list ap) 1338 { 1339 return vfscanf(stdin, fmt, ap); 1340 } 1341 1342 int scanf(const char *fmt, ...) 1343 1343 { 1344 1344 va_list args; … … 1346 1346 1347 1347 va_start(args, fmt); 1348 rc = xxvscanf(fmt, args);1348 rc = vscanf(fmt, args); 1349 1349 va_end(args); 1350 1350 -
uspace/lib/c/generic/stdio/sscanf.c
rf47a905 r5a6c28d1 40 40 #include "../private/sstream.h" 41 41 42 int xxvsscanf(const char *s, const char *fmt, va_list ap)42 int vsscanf(const char *s, const char *fmt, va_list ap) 43 43 { 44 44 FILE f; 45 45 46 46 __sstream_init(s, &f); 47 return xxvfscanf(&f, fmt, ap);47 return vfscanf(&f, fmt, ap); 48 48 } 49 49 50 int xxsscanf(const char *s, const char *fmt, ...)50 int sscanf(const char *s, const char *fmt, ...) 51 51 { 52 52 va_list args; … … 54 54 55 55 va_start(args, fmt); 56 rc = xxvsscanf(s, fmt, args);56 rc = vsscanf(s, fmt, args); 57 57 va_end(args); 58 58 -
uspace/lib/c/include/stdio.h
rf47a905 r5a6c28d1 101 101 extern int vsnprintf(char *, size_t, const char *, va_list); 102 102 103 extern int xxscanf(const char *, ...); 104 extern int xxvscanf(const char *, va_list); 105 extern int xxfscanf(FILE *, const char *, ...); 106 extern int xxvfscanf(FILE *, const char *, va_list); 107 extern int xxsscanf(const char *, const char *, ...); 108 extern int xxvsscanf(const char *, const char *, va_list); 103 /* Formatted input */ 104 extern int scanf(const char *, ...); 105 extern int vscanf(const char *, va_list); 106 extern int fscanf(FILE *, const char *, ...); 107 extern int vfscanf(FILE *, const char *, va_list); 108 extern int sscanf(const char *, const char *, ...); 109 extern int vsscanf(const char *, const char *, va_list); 109 110 110 111 /* File stream functions */ -
uspace/lib/c/test/stdio/scanf.c
rf47a905 r5a6c28d1 55 55 56 56 /* Empty format string */ 57 rc = xxsscanf("42", "");57 rc = sscanf("42", ""); 58 58 PCUT_ASSERT_INT_EQUALS(0, rc); 59 59 } … … 65 65 66 66 /* Decimal integer */ 67 rc = xxsscanf("42", "%d", &i);67 rc = sscanf("42", "%d", &i); 68 68 PCUT_ASSERT_INT_EQUALS(1, rc); 69 69 PCUT_ASSERT_TRUE(i == 42); … … 76 76 77 77 /* Two integers */ 78 rc = xxsscanf("42 43", "%d%d", &i, &j);78 rc = sscanf("42 43", "%d%d", &i, &j); 79 79 PCUT_ASSERT_INT_EQUALS(2, rc); 80 80 PCUT_ASSERT_TRUE(i == 42); … … 88 88 89 89 /* Decimal signed char */ 90 rc = xxsscanf("42", "%hhd", &sc);90 rc = sscanf("42", "%hhd", &sc); 91 91 PCUT_ASSERT_INT_EQUALS(1, rc); 92 92 PCUT_ASSERT_TRUE(sc == 42); … … 99 99 100 100 /* Decimal short */ 101 rc = xxsscanf("42", "%hd", &si);101 rc = sscanf("42", "%hd", &si); 102 102 PCUT_ASSERT_INT_EQUALS(1, rc); 103 103 PCUT_ASSERT_TRUE(si == 42); … … 110 110 111 111 /* Decimal long */ 112 rc = xxsscanf("42", "%ld", &li);112 rc = sscanf("42", "%ld", &li); 113 113 PCUT_ASSERT_INT_EQUALS(1, rc); 114 114 PCUT_ASSERT_TRUE(li == 42); … … 121 121 122 122 /* Decimal long long */ 123 rc = xxsscanf("42", "%lld", &lli);123 rc = sscanf("42", "%lld", &lli); 124 124 PCUT_ASSERT_INT_EQUALS(1, rc); 125 125 PCUT_ASSERT_TRUE(lli == 42); … … 132 132 133 133 /* Decimal intmax_t */ 134 rc = xxsscanf("42", "%jd", &imax);134 rc = sscanf("42", "%jd", &imax); 135 135 PCUT_ASSERT_INT_EQUALS(1, rc); 136 136 PCUT_ASSERT_TRUE(imax == 42); … … 143 143 144 144 /* Decimal size_t-sized */ 145 rc = xxsscanf("42", "%zd", &szi);145 rc = sscanf("42", "%zd", &szi); 146 146 PCUT_ASSERT_INT_EQUALS(1, rc); 147 147 PCUT_ASSERT_TRUE(szi == 42); … … 154 154 155 155 /* Decimal ptrdiff_t-sized */ 156 rc = xxsscanf("42", "%td", &pdi);156 rc = sscanf("42", "%td", &pdi); 157 157 PCUT_ASSERT_INT_EQUALS(1, rc); 158 158 PCUT_ASSERT_TRUE(pdi == 42); … … 165 165 166 166 /* Decimal integer followed by hexadecimal digit */ 167 rc = xxsscanf("42a", "%d", &i);167 rc = sscanf("42a", "%d", &i); 168 168 PCUT_ASSERT_INT_EQUALS(1, rc); 169 169 PCUT_ASSERT_TRUE(i == 42); … … 176 176 177 177 /* Decimal integer - detect no prefix */ 178 rc = xxsscanf("42", "%i", &i);178 rc = sscanf("42", "%i", &i); 179 179 PCUT_ASSERT_INT_EQUALS(1, rc); 180 180 PCUT_ASSERT_TRUE(i == 42); … … 187 187 188 188 /* Prefixed octal integer followed by decimal digit */ 189 rc = xxsscanf("019", "%i", &i);189 rc = sscanf("019", "%i", &i); 190 190 PCUT_ASSERT_INT_EQUALS(1, rc); 191 191 PCUT_ASSERT_TRUE(i == 1); … … 198 198 199 199 /* Prefixed hexadecimal integer followed by other character */ 200 rc = xxsscanf("0xag", "%i", &i);200 rc = sscanf("0xag", "%i", &i); 201 201 PCUT_ASSERT_INT_EQUALS(1, rc); 202 202 PCUT_ASSERT_TRUE(i == 10); … … 209 209 210 210 /* Decimal integer with '+' sign */ 211 rc = xxsscanf("+42", "%d", &i);211 rc = sscanf("+42", "%d", &i); 212 212 PCUT_ASSERT_INT_EQUALS(1, rc); 213 213 PCUT_ASSERT_TRUE(i == 42); … … 220 220 221 221 /* Decimal integer with '-' sign */ 222 rc = xxsscanf("-42", "%d", &i);222 rc = sscanf("-42", "%d", &i); 223 223 PCUT_ASSERT_INT_EQUALS(1, rc); 224 224 PCUT_ASSERT_TRUE(i == -42); … … 231 231 232 232 /* Hexadecimal integer with prefix and '-' sign */ 233 rc = xxsscanf("-0xa", "%i", &i);233 rc = sscanf("-0xa", "%i", &i); 234 234 PCUT_ASSERT_INT_EQUALS(1, rc); 235 235 PCUT_ASSERT_TRUE(i == -10); … … 242 242 243 243 /* Decimal unsigned integer */ 244 rc = xxsscanf("42", "%u", &u);244 rc = sscanf("42", "%u", &u); 245 245 PCUT_ASSERT_INT_EQUALS(1, rc); 246 246 PCUT_ASSERT_TRUE(u == 42); … … 253 253 254 254 /* Decimal unsigned char */ 255 rc = xxsscanf("42", "%hhu", &uc);255 rc = sscanf("42", "%hhu", &uc); 256 256 PCUT_ASSERT_INT_EQUALS(1, rc); 257 257 PCUT_ASSERT_TRUE(uc == 42); … … 264 264 265 265 /* Decimal unsigned short */ 266 rc = xxsscanf("42", "%hu", &su);266 rc = sscanf("42", "%hu", &su); 267 267 PCUT_ASSERT_INT_EQUALS(1, rc); 268 268 PCUT_ASSERT_TRUE(su == 42); … … 275 275 276 276 /* Decimal unsigned long */ 277 rc = xxsscanf("42", "%lu", &lu);277 rc = sscanf("42", "%lu", &lu); 278 278 PCUT_ASSERT_INT_EQUALS(1, rc); 279 279 PCUT_ASSERT_TRUE(lu == 42); … … 286 286 287 287 /* Decimal unsigned long long */ 288 rc = xxsscanf("42", "%llu", &llu);288 rc = sscanf("42", "%llu", &llu); 289 289 PCUT_ASSERT_INT_EQUALS(1, rc); 290 290 PCUT_ASSERT_TRUE(llu == 42); … … 297 297 298 298 /* Decimal uintmax_t */ 299 rc = xxsscanf("42", "%ju", &umax);299 rc = sscanf("42", "%ju", &umax); 300 300 PCUT_ASSERT_INT_EQUALS(1, rc); 301 301 PCUT_ASSERT_TRUE(umax == 42); … … 308 308 309 309 /* Decimal size_t */ 310 rc = xxsscanf("42", "%zu", &szu);310 rc = sscanf("42", "%zu", &szu); 311 311 PCUT_ASSERT_INT_EQUALS(1, rc); 312 312 PCUT_ASSERT_TRUE(szu == 42); … … 319 319 320 320 /* Decimal ptrdiff_t-sized unsigned int*/ 321 rc = xxsscanf("42", "%tu", &pdu);321 rc = sscanf("42", "%tu", &pdu); 322 322 PCUT_ASSERT_INT_EQUALS(1, rc); 323 323 PCUT_ASSERT_TRUE(pdu == 42); … … 330 330 331 331 /* Octal unsigned integer */ 332 rc = xxsscanf("52", "%o", &u);332 rc = sscanf("52", "%o", &u); 333 333 PCUT_ASSERT_INT_EQUALS(1, rc); 334 334 PCUT_ASSERT_TRUE(u == 052); … … 341 341 342 342 /* Hexadecimal unsigned integer */ 343 rc = xxsscanf("2a", "%x", &u);343 rc = sscanf("2a", "%x", &u); 344 344 PCUT_ASSERT_INT_EQUALS(1, rc); 345 345 PCUT_ASSERT_TRUE(u == 0x2a); … … 352 352 353 353 /* Hexadecimal unsigned integer unsing alternate specifier */ 354 rc = xxsscanf("2a", "%X", &u);354 rc = sscanf("2a", "%X", &u); 355 355 PCUT_ASSERT_INT_EQUALS(1, rc); 356 356 PCUT_ASSERT_TRUE(u == 0x2a); … … 363 363 364 364 /* Uppercase hexadecimal unsigned integer */ 365 rc = xxsscanf("2A", "%x", &u);365 rc = sscanf("2A", "%x", &u); 366 366 PCUT_ASSERT_INT_EQUALS(1, rc); 367 367 PCUT_ASSERT_TRUE(u == 0x2a); 368 368 } 369 369 370 PCUT_TEST(hex_not_match_0x) 371 { 372 int rc; 373 unsigned u; 374 375 /* Make sure %x does not match 0x prefix */ 376 rc = sscanf("0x1", "%x", &u); 377 378 PCUT_ASSERT_INT_EQUALS(1, rc); 379 PCUT_ASSERT_TRUE(u == 0); 380 } 381 370 382 PCUT_TEST(skipws) 371 383 { … … 374 386 375 387 /* Skipping whitespace */ 376 rc = xxsscanf(" \t\n42", "%d", &i);388 rc = sscanf(" \t\n42", "%d", &i); 377 389 PCUT_ASSERT_INT_EQUALS(1, rc); 378 390 PCUT_ASSERT_TRUE(i == 42); … … 385 397 386 398 /* Percentile conversion */ 387 rc = xxsscanf(" \t\n%42", "%%%d", &i);399 rc = sscanf(" \t\n%42", "%%%d", &i); 388 400 PCUT_ASSERT_INT_EQUALS(1, rc); 389 401 PCUT_ASSERT_TRUE(i == 42); … … 396 408 397 409 /* Matching specific character */ 398 rc = xxsscanf("x42", "x%d", &i);410 rc = sscanf("x42", "x%d", &i); 399 411 PCUT_ASSERT_INT_EQUALS(1, rc); 400 412 PCUT_ASSERT_TRUE(i == 42); … … 407 419 408 420 /* Matching specific character should not skip whitespace */ 409 rc = xxsscanf(" x42", "x%d", &i);421 rc = sscanf(" x42", "x%d", &i); 410 422 PCUT_ASSERT_INT_EQUALS(0, rc); 411 423 } … … 417 429 418 430 /* Skipping whitespace + match specific character */ 419 rc = xxsscanf(" x42", "\t\nx%d", &i);431 rc = sscanf(" x42", "\t\nx%d", &i); 420 432 PCUT_ASSERT_INT_EQUALS(1, rc); 421 433 PCUT_ASSERT_TRUE(i == 42); … … 428 440 429 441 /* Decimal with limited, but sufficient width */ 430 rc = xxsscanf("42", "%2d", &i);442 rc = sscanf("42", "%2d", &i); 431 443 PCUT_ASSERT_INT_EQUALS(1, rc); 432 444 PCUT_ASSERT_TRUE(i == 42); … … 439 451 440 452 /* Decimal with limited, smaller width */ 441 rc = xxsscanf("42", "%1d", &i);453 rc = sscanf("42", "%1d", &i); 442 454 PCUT_ASSERT_INT_EQUALS(1, rc); 443 455 PCUT_ASSERT_TRUE(i == 4); … … 450 462 451 463 /* Integer with hex prefix, format with limited, sufficient width */ 452 rc = xxsscanf("0x1", "%3i", &i);464 rc = sscanf("0x1", "%3i", &i); 453 465 PCUT_ASSERT_INT_EQUALS(1, rc); 454 466 PCUT_ASSERT_TRUE(i == 1); … … 461 473 462 474 /* Integer with hex prefix, format with limited, smaller width */ 463 rc = xxsscanf("0x1", "%2i", &i);475 rc = sscanf("0x1", "%2i", &i); 464 476 PCUT_ASSERT_INT_EQUALS(1, rc); 465 477 PCUT_ASSERT_TRUE(i == 0); … … 472 484 473 485 /* Integer with octal prefix, format with limited, sufficient width */ 474 rc = xxsscanf("012", "%3i", &i);486 rc = sscanf("012", "%3i", &i); 475 487 PCUT_ASSERT_INT_EQUALS(1, rc); 476 488 PCUT_ASSERT_TRUE(i == 012); … … 483 495 484 496 /* Integer with octal prefix, format with limited, smaller width */ 485 rc = xxsscanf("012", "%2i", &i);497 rc = sscanf("012", "%2i", &i); 486 498 PCUT_ASSERT_INT_EQUALS(1, rc); 487 499 PCUT_ASSERT_TRUE(i == 01); … … 494 506 495 507 /* Integer with octal prefix, format with width allowing just for 0 */ 496 rc = xxsscanf("012", "%1i", &i);508 rc = sscanf("012", "%1i", &i); 497 509 PCUT_ASSERT_INT_EQUALS(1, rc); 498 510 PCUT_ASSERT_TRUE(i == 0); … … 505 517 506 518 /* Pointer */ 507 rc = xxsscanf("0x12341234", "%p", &ptr);508 PCUT_ASSERT_INT_EQUALS(1, rc); 509 PCUT_ASSERT_TRUE(ptr == (void *)0x 12341234);519 rc = sscanf("0xABCDEF88", "%p", &ptr); 520 PCUT_ASSERT_INT_EQUALS(1, rc); 521 PCUT_ASSERT_TRUE(ptr == (void *)0xABCDEF88); 510 522 } 511 523 … … 516 528 517 529 /* Single character */ 518 rc = xxsscanf("x", "%c", &c);530 rc = sscanf("x", "%c", &c); 519 531 PCUT_ASSERT_INT_EQUALS(1, rc); 520 532 PCUT_ASSERT_TRUE(c == 'x'); … … 527 539 528 540 /* Single whitespace character */ 529 rc = xxsscanf("\t", "%c", &c);541 rc = sscanf("\t", "%c", &c); 530 542 PCUT_ASSERT_INT_EQUALS(1, rc); 531 543 PCUT_ASSERT_TRUE(c == '\t'); … … 539 551 /* Multiple characters */ 540 552 memset(chars, 'X', chars_size); 541 rc = xxsscanf("abc", "%3c", chars);553 rc = sscanf("abc", "%3c", chars); 542 554 PCUT_ASSERT_INT_EQUALS(1, rc); 543 555 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 554 566 /* Fewer characters than requested */ 555 567 memset(chars, 'X', chars_size); 556 rc = xxsscanf("abc", "%5c", chars);568 rc = sscanf("abc", "%5c", chars); 557 569 PCUT_ASSERT_INT_EQUALS(1, rc); 558 570 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 569 581 /* Reading characters but no found */ 570 582 memset(chars, 'X', chars_size); 571 rc = xxsscanf("", "%5c", chars);583 rc = sscanf("", "%5c", chars); 572 584 PCUT_ASSERT_INT_EQUALS(EOF, rc); 573 585 PCUT_ASSERT_TRUE(chars[0] == 'X'); … … 580 592 581 593 /* Multiple characters with suppressed assignment */ 582 rc = xxsscanf("abc", "%*3c%n", &n);594 rc = sscanf("abc", "%*3c%n", &n); 583 595 PCUT_ASSERT_INT_EQUALS(0, rc); 584 596 PCUT_ASSERT_INT_EQUALS(3, n); … … 592 604 /* Multiple characters with memory allocation */ 593 605 cp = NULL; 594 rc = xxsscanf("abc", "%m3c", &cp);606 rc = sscanf("abc", "%m3c", &cp); 595 607 PCUT_ASSERT_INT_EQUALS(1, rc); 596 608 PCUT_ASSERT_NOT_NULL(cp); … … 608 620 /* String of non-whitespace characters, unlimited width */ 609 621 memset(chars, 'X', chars_size); 610 rc = xxsscanf(" abc d", "%s", chars);622 rc = sscanf(" abc d", "%s", chars); 611 623 PCUT_ASSERT_INT_EQUALS(1, rc); 612 624 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 624 636 /* String of non-whitespace characters, until the end */ 625 637 memset(chars, 'X', chars_size); 626 rc = xxsscanf(" abc", "%s", chars);638 rc = sscanf(" abc", "%s", chars); 627 639 PCUT_ASSERT_INT_EQUALS(1, rc); 628 640 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 640 652 /* String of non-whitespace characters, large enough width */ 641 653 memset(chars, 'X', chars_size); 642 rc = xxsscanf(" abc d", "%5s", chars);654 rc = sscanf(" abc d", "%5s", chars); 643 655 PCUT_ASSERT_INT_EQUALS(1, rc); 644 656 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 656 668 /* Want string of non-whitespace, but got only whitespace */ 657 669 memset(chars, 'X', chars_size); 658 rc = xxsscanf(" ", "%s", chars);670 rc = sscanf(" ", "%s", chars); 659 671 PCUT_ASSERT_INT_EQUALS(EOF, rc); 660 672 PCUT_ASSERT_TRUE(chars[0] == 'X'); … … 668 680 /* String of non-whitespace characters, small width */ 669 681 memset(chars, 'X', chars_size); 670 rc = xxsscanf(" abc", "%2s", chars);682 rc = sscanf(" abc", "%2s", chars); 671 683 PCUT_ASSERT_INT_EQUALS(1, rc); 672 684 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 682 694 683 695 /* String of non-whitespace characters, assignment suppression */ 684 rc = xxsscanf(" abc d", "%*s%n", &n);696 rc = sscanf(" abc d", "%*s%n", &n); 685 697 PCUT_ASSERT_INT_EQUALS(0, rc); 686 698 PCUT_ASSERT_INT_EQUALS(4, n); … … 693 705 694 706 /* String of non-whitespace characters, memory allocation */ 695 rc = xxsscanf(" abc d", "%ms", &cp);707 rc = sscanf(" abc d", "%ms", &cp); 696 708 PCUT_ASSERT_INT_EQUALS(1, rc); 697 709 PCUT_ASSERT_NOT_NULL(cp); … … 711 723 /* Set conversion without width specified terminating before the end */ 712 724 memset(chars, 'X', chars_size); 713 rc = xxsscanf("abcd42", "%[abc]d%d", chars, &i);725 rc = sscanf("abcd42", "%[abc]d%d", chars, &i); 714 726 PCUT_ASSERT_INT_EQUALS(2, rc); 715 727 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 728 740 /* Set conversion without width specified, until the end */ 729 741 memset(chars, 'X', chars_size); 730 rc = xxsscanf("abc", "%[abc]", chars);742 rc = sscanf("abc", "%[abc]", chars); 731 743 PCUT_ASSERT_INT_EQUALS(1, rc); 732 744 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 744 756 /* Set conversion with larger width */ 745 757 memset(chars, 'X', chars_size); 746 rc = xxsscanf("abcd", "%5[abc]", chars);758 rc = sscanf("abcd", "%5[abc]", chars); 747 759 PCUT_ASSERT_INT_EQUALS(1, rc); 748 760 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 760 772 /* Set conversion with smaller width */ 761 773 memset(chars, 'X', chars_size); 762 rc = xxsscanf("abcd", "%3[abcd]", chars);774 rc = sscanf("abcd", "%3[abcd]", chars); 763 775 PCUT_ASSERT_INT_EQUALS(1, rc); 764 776 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 776 788 /* Set conversion with negated scanset */ 777 789 memset(chars, 'X', chars_size); 778 rc = xxsscanf("abcd", "%[^d]", chars);790 rc = sscanf("abcd", "%[^d]", chars); 779 791 PCUT_ASSERT_INT_EQUALS(1, rc); 780 792 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 792 804 /* Set conversion with ']' in scanset */ 793 805 memset(chars, 'X', chars_size); 794 rc = xxsscanf("]bcd", "%[]bc]", chars);806 rc = sscanf("]bcd", "%[]bc]", chars); 795 807 PCUT_ASSERT_INT_EQUALS(1, rc); 796 808 PCUT_ASSERT_TRUE(chars[0] == ']'); … … 808 820 /* Set conversion with ']' in inverted scanset */ 809 821 memset(chars, 'X', chars_size); 810 rc = xxsscanf("abc]", "%[^]def]", chars);822 rc = sscanf("abc]", "%[^]def]", chars); 811 823 PCUT_ASSERT_INT_EQUALS(1, rc); 812 824 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 823 835 824 836 /* Set conversion with assignment suppression */ 825 rc = xxsscanf("abcd42", "%*[abc]%n", &n);837 rc = sscanf("abcd42", "%*[abc]%n", &n); 826 838 PCUT_ASSERT_INT_EQUALS(0, rc); 827 839 PCUT_ASSERT_INT_EQUALS(3, n); … … 835 847 /* Set conversion with memory allocation */ 836 848 cp = NULL; 837 rc = xxsscanf("abcd42", "%m[abcd]", &cp);849 rc = sscanf("abcd42", "%m[abcd]", &cp); 838 850 PCUT_ASSERT_INT_EQUALS(1, rc); 839 851 PCUT_ASSERT_NOT_NULL(cp); … … 852 864 853 865 /* Decimal integer with suppressed assignment */ 854 rc = xxsscanf("42", "%*d%n", &n);866 rc = sscanf("42", "%*d%n", &n); 855 867 PCUT_ASSERT_INT_EQUALS(0, rc); 856 868 PCUT_ASSERT_INT_EQUALS(2, n); … … 865 877 /* Count of characters read */ 866 878 memset(chars, 'X', chars_size); 867 rc = xxsscanf("abcd", "%3c%n", chars, &n);879 rc = sscanf("abcd", "%3c%n", chars, &n); 868 880 PCUT_ASSERT_INT_EQUALS(1, rc); 869 881 PCUT_ASSERT_TRUE(chars[0] == 'a'); … … 880 892 881 893 /* Float with just integer part */ 882 rc = xxsscanf("42", "%f", &f);894 rc = sscanf("42", "%f", &f); 883 895 PCUT_ASSERT_INT_EQUALS(1, rc); 884 896 PCUT_ASSERT_TRUE(f == 42.0); … … 891 903 892 904 /* Double with just integer part */ 893 rc = xxsscanf("42", "%lf", &d);905 rc = sscanf("42", "%lf", &d); 894 906 PCUT_ASSERT_INT_EQUALS(1, rc); 895 907 PCUT_ASSERT_TRUE(d == 42.0); … … 902 914 903 915 /* Long double with just integer part */ 904 rc = xxsscanf("42", "%Lf", &ld);916 rc = sscanf("42", "%Lf", &ld); 905 917 PCUT_ASSERT_INT_EQUALS(1, rc); 906 918 PCUT_ASSERT_TRUE(ld == 42.0); … … 913 925 914 926 /* Float with just hexadecimal integer part */ 915 rc = xxsscanf("0x2a", "%f", &f);927 rc = sscanf("0x2a", "%f", &f); 916 928 PCUT_ASSERT_INT_EQUALS(1, rc); 917 929 PCUT_ASSERT_TRUE(f == 0x2a.0p0); … … 924 936 925 937 /* Float with sign and integer part */ 926 rc = xxsscanf("-42", "%f", &f);938 rc = sscanf("-42", "%f", &f); 927 939 PCUT_ASSERT_INT_EQUALS(1, rc); 928 940 PCUT_ASSERT_TRUE(f == -42.0); … … 935 947 936 948 /* Float with integer and fractional part */ 937 rc = xxsscanf("4.2", "%f", &f);949 rc = sscanf("4.2", "%f", &f); 938 950 PCUT_ASSERT_INT_EQUALS(1, rc); 939 951 /* 1/10 is not exactly representable in binary floating point */ … … 948 960 949 961 /* Float with integer part and unsigned exponent */ 950 rc = xxsscanf("42e1", "%f", &f);962 rc = sscanf("42e1", "%f", &f); 951 963 PCUT_ASSERT_INT_EQUALS(1, rc); 952 964 PCUT_ASSERT_TRUE(f == 420.0); … … 959 971 960 972 /* Float with integer part and positive exponent */ 961 rc = xxsscanf("42e+1", "%f", &f);973 rc = sscanf("42e+1", "%f", &f); 962 974 PCUT_ASSERT_INT_EQUALS(1, rc); 963 975 PCUT_ASSERT_TRUE(f == 420.0); … … 970 982 971 983 /* Float with integer part and negative exponent */ 972 rc = xxsscanf("42e-1", "%f", &f);984 rc = sscanf("42e-1", "%f", &f); 973 985 PCUT_ASSERT_INT_EQUALS(1, rc); 974 986 /* 1/10 is not exactly representable in binary floating point */ … … 983 995 984 996 /* Float with integer, fractional parts and unsigned exponent */ 985 rc = xxsscanf("4.2e1", "%f", &f);997 rc = sscanf("4.2e1", "%f", &f); 986 998 PCUT_ASSERT_INT_EQUALS(1, rc); 987 999 PCUT_ASSERT_TRUE(f == 42.0); … … 994 1006 995 1007 /* Hexadecimal float with integer and fractional part */ 996 rc = xxsscanf("0x2.a", "%f", &f);1008 rc = sscanf("0x2.a", "%f", &f); 997 1009 PCUT_ASSERT_INT_EQUALS(1, rc); 998 1010 PCUT_ASSERT_TRUE(f == 0x2.ap0); … … 1007 1019 * Hexadecimal float with integer part and unsigned exponent 1008 1020 */ 1009 rc = xxsscanf("0x2ap1", "%f", &f);1021 rc = sscanf("0x2ap1", "%f", &f); 1010 1022 PCUT_ASSERT_INT_EQUALS(1, rc); 1011 1023 PCUT_ASSERT_TRUE(f == 0x2ap1); … … 1020 1032 * Hexadecimal float with integer part and negative exponent 1021 1033 */ 1022 rc = xxsscanf("0x2ap-1", "%f", &f);1034 rc = sscanf("0x2ap-1", "%f", &f); 1023 1035 PCUT_ASSERT_INT_EQUALS(1, rc); 1024 1036 PCUT_ASSERT_TRUE(f == 0x2ap-1); … … 1034 1046 * exponent 1035 1047 */ 1036 rc = xxsscanf("0x2.ap4", "%f", &f);1048 rc = sscanf("0x2.ap4", "%f", &f); 1037 1049 PCUT_ASSERT_INT_EQUALS(1, rc); 1038 1050 PCUT_ASSERT_TRUE(f == 0x2.ap4); … … 1045 1057 1046 1058 /* Float with just integer part and limited width */ 1047 rc = xxsscanf("1234", "%3f", &f);1059 rc = sscanf("1234", "%3f", &f); 1048 1060 PCUT_ASSERT_INT_EQUALS(1, rc); 1049 1061 PCUT_ASSERT_TRUE(f == 123.0); … … 1056 1068 1057 1069 /* Float with integer, fractional part and limited width */ 1058 rc = xxsscanf("12.34", "%4f", &f);1070 rc = sscanf("12.34", "%4f", &f); 1059 1071 PCUT_ASSERT_INT_EQUALS(1, rc); 1060 1072 /* 1/10 is not exactly representable in binary floating point */ … … 1069 1081 1070 1082 /* Float with width only enough to cover an integral part */ 1071 rc = xxsscanf("12.34", "%3f", &f);1083 rc = sscanf("12.34", "%3f", &f); 1072 1084 PCUT_ASSERT_INT_EQUALS(1, rc); 1073 1085 PCUT_ASSERT_TRUE(f == 12.0); … … 1080 1092 1081 1093 /* Float with width too small to cover the exponent number */ 1082 rc = xxsscanf("12.34e+2", "%7f", &f);1094 rc = sscanf("12.34e+2", "%7f", &f); 1083 1095 PCUT_ASSERT_INT_EQUALS(1, rc); 1084 1096 /* 1/10 is not exactly representable in binary floating point */ … … 1093 1105 1094 1106 /* Float with width too small to cover the exponent sign and number */ 1095 rc = xxsscanf("12.34e+2", "%6f", &f);1107 rc = sscanf("12.34e+2", "%6f", &f); 1096 1108 PCUT_ASSERT_INT_EQUALS(1, rc); 1097 1109 /* 1/10 is not exactly representable in binary floating point */ … … 1106 1118 1107 1119 /* Float with width too small to cover the exponent part */ 1108 rc = xxsscanf("12.34e+2", "%5f", &f);1120 rc = sscanf("12.34e+2", "%5f", &f); 1109 1121 PCUT_ASSERT_INT_EQUALS(1, rc); 1110 1122 /* 1/10 is not exactly representable in binary floating point */ … … 1119 1131 1120 1132 /* Float using alternate form 'F' */ 1121 rc = xxsscanf("42e1", "%F", &f);1133 rc = sscanf("42e1", "%F", &f); 1122 1134 PCUT_ASSERT_INT_EQUALS(1, rc); 1123 1135 PCUT_ASSERT_TRUE(f == 420.0); … … 1130 1142 1131 1143 /* Float using alternate form 'a' */ 1132 rc = xxsscanf("42e1", "%a", &f);1144 rc = sscanf("42e1", "%a", &f); 1133 1145 PCUT_ASSERT_INT_EQUALS(1, rc); 1134 1146 PCUT_ASSERT_TRUE(f == 420.0); … … 1141 1153 1142 1154 /* Float using alternate form 'e' */ 1143 rc = xxsscanf("42e1", "%e", &f);1155 rc = sscanf("42e1", "%e", &f); 1144 1156 PCUT_ASSERT_INT_EQUALS(1, rc); 1145 1157 PCUT_ASSERT_TRUE(f == 420.0); … … 1152 1164 1153 1165 /* Float using alternate form 'g' */ 1154 rc = xxsscanf("42e1", "%g", &f);1166 rc = sscanf("42e1", "%g", &f); 1155 1167 PCUT_ASSERT_INT_EQUALS(1, rc); 1156 1168 PCUT_ASSERT_TRUE(f == 420.0); … … 1163 1175 1164 1176 /* Float using alternate form 'A' */ 1165 rc = xxsscanf("42e1", "%A", &f);1177 rc = sscanf("42e1", "%A", &f); 1166 1178 PCUT_ASSERT_INT_EQUALS(1, rc); 1167 1179 PCUT_ASSERT_TRUE(f == 420.0); … … 1174 1186 1175 1187 /* Float using alternate form 'E' */ 1176 rc = xxsscanf("42e1", "%E", &f);1188 rc = sscanf("42e1", "%E", &f); 1177 1189 PCUT_ASSERT_INT_EQUALS(1, rc); 1178 1190 PCUT_ASSERT_TRUE(f == 420.0); … … 1185 1197 1186 1198 /* Float using alternate form 'G' */ 1187 rc = xxsscanf("42e1", "%G", &f);1199 rc = sscanf("42e1", "%G", &f); 1188 1200 PCUT_ASSERT_INT_EQUALS(1, rc); 1189 1201 PCUT_ASSERT_TRUE(f == 420.0); -
uspace/lib/posix/Makefile
rf47a905 r5a6c28d1 70 70 src/signal.c \ 71 71 src/stdio.c \ 72 src/stdio/scanf.c \73 72 src/stdlib.c \ 74 73 src/stdlib/strtold.c \ -
uspace/lib/posix/include/posix/stdio.h
rf47a905 r5a6c28d1 164 164 extern int vsprintf(char *__restrict__ s, const char *__restrict__ format, va_list ap); 165 165 166 /* Formatted Input */167 extern int fscanf(168 FILE *__restrict__ stream, const char *__restrict__ format, ...);169 extern int vfscanf(170 FILE *__restrict__ stream, const char *__restrict__ format, va_list arg);171 extern int scanf(const char *__restrict__ format, ...);172 extern int vscanf(const char *__restrict__ format, va_list arg);173 extern int sscanf(174 const char *__restrict__ s, const char *__restrict__ format, ...);175 extern int vsscanf(176 const char *__restrict__ s, const char *__restrict__ format, va_list arg);177 178 166 /* File Locking */ 179 167 extern void flockfile(FILE *file); -
uspace/lib/posix/src/stdio.c
rf47a905 r5a6c28d1 351 351 352 352 /** 353 * Convert formatted input from the stream.354 *355 * @param stream Input stream.356 * @param format Format description.357 * @return The number of converted output items or EOF on failure.358 */359 int fscanf(FILE *restrict stream, const char *restrict format, ...)360 {361 va_list list;362 va_start(list, format);363 int result = vfscanf(stream, format, list);364 va_end(list);365 return result;366 }367 368 /**369 * Convert formatted input from the standard input.370 *371 * @param format Format description.372 * @return The number of converted output items or EOF on failure.373 */374 int scanf(const char *restrict format, ...)375 {376 va_list list;377 va_start(list, format);378 int result = vscanf(format, list);379 va_end(list);380 return result;381 }382 383 /**384 * Convert formatted input from the standard input.385 *386 * @param format Format description.387 * @param arg Output items.388 * @return The number of converted output items or EOF on failure.389 */390 int vscanf(const char *restrict format, va_list arg)391 {392 return vfscanf(stdin, format, arg);393 }394 395 /**396 * Convert formatted input from the string.397 *398 * @param s Input string.399 * @param format Format description.400 * @return The number of converted output items or EOF on failure.401 */402 int sscanf(const char *restrict s, const char *restrict format, ...)403 {404 va_list list;405 va_start(list, format);406 int result = vsscanf(s, format, list);407 va_end(list);408 return result;409 }410 411 /**412 353 * Acquire file stream for the thread. 413 354 *
Note:
See TracChangeset
for help on using the changeset viewer.