Changeset 1772e6d in mainline
- Timestamp:
- 2012-07-30T21:34:04Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f80fd8c
- Parents:
- 597b12e
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/src/str.c
r597b12e r1772e6d 357 357 * and both strings consist of the same sequence of characters. 358 358 * 359 * A string is smaller than another string iff it is shorter or 360 * has a character with lower value at the first position where 361 * the strings differ. 359 * A string S1 is less than another string S2 if it has a character with 360 * lower value at the first character position where the strings differ. 361 * If the strings differ in length, the shorter one is treated as if 362 * padded by characters with a value of zero. 362 363 * 363 364 * @param s1 First string to compare. 364 365 * @param s2 Second string to compare. 365 366 * 366 * @return 0 if the strings are equal, -1 if first is smaller,367 * 1 if second smaller.367 * @return 0 if the strings are equal, -1 if the first is less than the second, 368 * 1 if the second is less than the first. 368 369 * 369 370 */ -
kernel/generic/src/lib/str.c
r597b12e r1772e6d 459 459 * and both strings consist of the same sequence of characters. 460 460 * 461 * A string is smaller than another string iff it is shorter or 462 * has a character with lower value at the first position where 463 * the strings differ. 461 * A string S1 is less than another string S2 if it has a character with 462 * lower value at the first character position where the strings differ. 463 * If the strings differ in length, the shorter one is treated as if 464 * padded by characters with a value of zero. 464 465 * 465 466 * @param s1 First string to compare. 466 467 * @param s2 Second string to compare. 467 468 * 468 * @return 0 if the strings are equal, -1 if first is smaller,469 * 1 if second smaller.469 * @return 0 if the strings are equal, -1 if the first is less than the second, 470 * 1 if the second is less than the first. 470 471 * 471 472 */ … … 503 504 * up to max_len characters. 504 505 * 505 * A string is smaller than another string iff it is shorter or 506 * has a character with lower value at the first position where 507 * the strings differ, considering only first max_len characters. 506 * A string S1 is less than another string S2 if it has a character with 507 * lower value at the first character position where the strings differ. 508 * If the strings differ in length, the shorter one is treated as if 509 * padded by characters with a value of zero. Only the first max_len 510 * characters are considered. 508 511 * 509 512 * @param s1 First string to compare. … … 511 514 * @param max_len Maximum number of characters to consider. 512 515 * 513 * @return 0 if the strings are equal, -1 if first is smaller,514 * 1 if second smaller.516 * @return 0 if the strings are equal, -1 if the first is less than the second, 517 * 1 if the second is less than the first. 515 518 * 516 519 */ -
uspace/lib/c/generic/str.c
r597b12e r1772e6d 431 431 * and both strings consist of the same sequence of characters. 432 432 * 433 * A string is smaller than another string iff it is shorter or 434 * has a character with lower value at the first position where 435 * the strings differ. 433 * A string S1 is less than another string S2 if it has a character with 434 * lower value at the first character position where the strings differ. 435 * If the strings differ in length, the shorter one is treated as if 436 * padded by characters with a value of zero. 436 437 * 437 438 * @param s1 First string to compare. 438 439 * @param s2 Second string to compare. 439 440 * 440 * @return 0 if the strings are equal, -1 if first is smaller,441 * 1 if second smaller.441 * @return 0 if the strings are equal, -1 if the first is less than the second, 442 * 1 if the second is less than the first. 442 443 * 443 444 */ … … 475 476 * up to max_len characters. 476 477 * 477 * A string is smaller than another string iff it is shorter or 478 * has a character with lower value at the first position where 479 * the strings differ, considering only first max_len characters. 478 * A string S1 is less than another string S2 if it has a character with 479 * lower value at the first character position where the strings differ. 480 * If the strings differ in length, the shorter one is treated as if 481 * padded by characters with a value of zero. Only the first max_len 482 * characters are considered. 480 483 * 481 484 * @param s1 First string to compare. … … 483 486 * @param max_len Maximum number of characters to consider. 484 487 * 485 * @return 0 if the strings are equal, -1 if first is smaller,486 * 1 if second smaller.488 * @return 0 if the strings are equal, -1 if the first is less than the second, 489 * 1 if the second is less than the first. 487 490 * 488 491 */
Note:
See TracChangeset
for help on using the changeset viewer.