Fossil SCM
Fix a comment with wrong parameters description
Commit
12cf825f663e49ab1184063045ad63d60204fcf2
Parent
ec3dd27f97571cd…
1 file changed
+1
-9
+1
-9
| --- src/printf.c | ||
| +++ src/printf.c | ||
| @@ -232,19 +232,11 @@ | ||
| 232 | 232 | |
| 233 | 233 | /* |
| 234 | 234 | ** The root program. All variations call this core. |
| 235 | 235 | ** |
| 236 | 236 | ** INPUTS: |
| 237 | -** func This is a pointer to a function taking three arguments | |
| 238 | -** 1. A pointer to anything. Same as the "arg" parameter. | |
| 239 | -** 2. A pointer to the list of characters to be output | |
| 240 | -** (Note, this list is NOT null terminated.) | |
| 241 | -** 3. An integer number of characters to be output. | |
| 242 | -** (Note: This number might be zero.) | |
| 243 | -** | |
| 244 | -** arg This is the pointer to anything which will be passed as the | |
| 245 | -** first argument to "func". Use it for whatever you like. | |
| 237 | +** pBlob This is the blob where the output will be built. | |
| 246 | 238 | ** |
| 247 | 239 | ** fmt This is the format string, as in the usual print. |
| 248 | 240 | ** |
| 249 | 241 | ** ap This is a pointer to a list of arguments. Same as in |
| 250 | 242 | ** vfprint. |
| 251 | 243 |
| --- src/printf.c | |
| +++ src/printf.c | |
| @@ -232,19 +232,11 @@ | |
| 232 | |
| 233 | /* |
| 234 | ** The root program. All variations call this core. |
| 235 | ** |
| 236 | ** INPUTS: |
| 237 | ** func This is a pointer to a function taking three arguments |
| 238 | ** 1. A pointer to anything. Same as the "arg" parameter. |
| 239 | ** 2. A pointer to the list of characters to be output |
| 240 | ** (Note, this list is NOT null terminated.) |
| 241 | ** 3. An integer number of characters to be output. |
| 242 | ** (Note: This number might be zero.) |
| 243 | ** |
| 244 | ** arg This is the pointer to anything which will be passed as the |
| 245 | ** first argument to "func". Use it for whatever you like. |
| 246 | ** |
| 247 | ** fmt This is the format string, as in the usual print. |
| 248 | ** |
| 249 | ** ap This is a pointer to a list of arguments. Same as in |
| 250 | ** vfprint. |
| 251 |
| --- src/printf.c | |
| +++ src/printf.c | |
| @@ -232,19 +232,11 @@ | |
| 232 | |
| 233 | /* |
| 234 | ** The root program. All variations call this core. |
| 235 | ** |
| 236 | ** INPUTS: |
| 237 | ** pBlob This is the blob where the output will be built. |
| 238 | ** |
| 239 | ** fmt This is the format string, as in the usual print. |
| 240 | ** |
| 241 | ** ap This is a pointer to a list of arguments. Same as in |
| 242 | ** vfprint. |
| 243 |