aboutsummaryrefslogtreecommitdiff
path: root/scripts/basic/docproc.c
diff options
context:
space:
mode:
authorAndy Spencer <[email protected]>2009-10-01 15:44:27 -0700
committerLinus Torvalds <[email protected]>2009-10-01 16:11:16 -0700
commit8fccae2c95506270f74ee8429c273b0924e89c83 (patch)
tree0d7147c02cda1ae3476698808957477569160c00 /scripts/basic/docproc.c
parentd41a4b515e346b3afdb5147d86927fa5835fc13b (diff)
sscanf(): fix %*s%n
When using %*s, sscanf should honor conversion specifiers immediately following the %*s. For example, the following code should find the position of the end of the string "hello". int end; char buf[] = "hello world"; sscanf(buf, "%*s%n", &end); printf("%d\n", end); Ideally, sscanf would advance the fmt and str pointers the same as it would without the *, but the code for that is rather complicated and is not included in the patch. Signed-off-by: Andy Spencer <[email protected]> Acked-by: WANG Cong <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'scripts/basic/docproc.c')
0 files changed, 0 insertions, 0 deletions