/** * WinPR: Windows Portable Runtime * Print Utils * * Copyright 2012 Marc-Andre Moreau * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include "trio.h" void winpr_HexDump(BYTE* data, int length) { BYTE* p = data; int i, line, offset = 0; while (offset < length) { fprintf(stderr, "%04x ", offset); line = length - offset; if (line > WINPR_HEXDUMP_LINE_LENGTH) line = WINPR_HEXDUMP_LINE_LENGTH; for (i = 0; i < line; i++) fprintf(stderr, "%02x ", p[i]); for (; i < WINPR_HEXDUMP_LINE_LENGTH; i++) fprintf(stderr, " "); for (i = 0; i < line; i++) fprintf(stderr, "%c", (p[i] >= 0x20 && p[i] < 0x7F) ? p[i] : '.'); fprintf(stderr, "\n"); offset += line; p += line; } } int wvprintfx(const char *fmt, va_list args) { return trio_vprintf(fmt, args); } int wprintfx(const char *fmt, ...) { va_list args; int status; va_start(args, fmt); status = trio_vprintf(fmt, args); va_end(args); return status; } int wvsnprintfx(char *buffer, size_t bufferSize, const char* fmt, va_list args) { return trio_vsnprintf(buffer, bufferSize, fmt, args); }