SW006014 Microchip Technology, SW006014 Datasheet - Page 92

C COMPILER MPLAB FOR PIC24 MCU

SW006014

Manufacturer Part Number
SW006014
Description
C COMPILER MPLAB FOR PIC24 MCU
Manufacturer
Microchip Technology
Type
MPLAB® C Compilerr
Series
PIC24r
Datasheet

Specifications of SW006014

Supported Families
PIC24
Core Architecture
PIC
Kit Contents
Software And Docs
Mcu Supported Families
PIC24
Tool Function
Compiler
Tool Type
Compiler
Processor Series
PIC24
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
DS51456E-page 88
vprintf
Description:
Include:
Prototype:
Arguments:
Return Value:
Remarks:
Example:
Prints formatted text to stdout using a variable length argument list
<stdio.h>
<stdarg.h>
int vprintf(const char *format, va_list ap);
format
ap
Returns number of characters generated or a negative number if an
error occurs.
The format argument has the same syntax and use that it has in
printf.
To access the variable length argument list, the ap variable must be ini-
tialized by the macro va_start and may be reinitialized by additional
calls to va_arg. This must be done before the vprintf function is
called. Invoke va_end after the function returns. For more details see
stdarg.h
#include <stdio.h>
#include <stdarg.h>
void errmsg(const char *fmt, ...)
{
}
int main(void)
{
}
Output:
Error: The letter 'a' is not an integer value.
Error: Requires 3 or more characters.
va_list ap;
va_start(ap, fmt);
printf("Error: ");
vprintf(fmt, ap);
va_end(ap);
int num = 3;
errmsg("The letter '%c' is not %s\n", 'a',
errmsg("Requires %d%s\n", num,
"an integer value.");
" or more characters.\n");
format control string
pointer to a list of arguments
/* for vprintf, printf */
/* for va_start,
/* va_list, va_end
© 2008 Microchip Technology Inc.
*/
*/

Related parts for SW006014