#include <stdarg.h>
#include <string.h>
#include <stdio.h>
#include "hycomp.h"
#include "hyport.h"
Functions | |
U_32 VMCALL | hystr_printf (struct HyPortLibrary *portLibrary, char *buf, U_32 bufLen, const char *format,...) |
Write characaters to a string as specified by format. | |
U_32 VMCALL | hystr_vprintf (struct HyPortLibrary *portLibrary, char *buf, U_32 bufLen, const char *format, va_list args) |
Write characaters to a string as specified by format. | |
void VMCALL | hystr_shutdown (struct HyPortLibrary *portLibrary) |
PortLibrary shutdown. | |
I_32 VMCALL | hystr_startup (struct HyPortLibrary *portLibrary) |
PortLibrary startup. |
|
Write characaters to a string as specified by format.
|
|
PortLibrary shutdown. This function is called during shutdown of the portLibrary. Any resources that were created by hystr_startup should be destroyed here.
|
|
PortLibrary startup. This function is called during startup of the portLibrary. Any resources that are required for the string operations may be created here. All resources created here should be destroyed in hystr_shutdown.
|
|
Write characaters to a string as specified by format.
|