CS318 - Pintos
Pintos source browser for JHU CS318 course
Data Fields
vsnprintf_aux Struct Reference

Auxiliary data for vsnprintf_helper(). More...

Data Fields

char * p
 Current output position. More...
 
int length
 Length of output string. More...
 
int max_length
 Max length of output string. More...
 

Detailed Description

Auxiliary data for vsnprintf_helper().

Definition at line 9 of file stdio.c.

Field Documentation

◆ length

int vsnprintf_aux::length

Length of output string.

Definition at line 12 of file stdio.c.

Referenced by vsnprintf(), and vsnprintf_helper().

◆ max_length

int vsnprintf_aux::max_length

Max length of output string.

Definition at line 13 of file stdio.c.

Referenced by vsnprintf(), and vsnprintf_helper().

◆ p

char* vsnprintf_aux::p

Current output position.

Definition at line 11 of file stdio.c.

Referenced by vsnprintf(), and vsnprintf_helper().


The documentation for this struct was generated from the following file: