root/native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

#ifndef NACL_IO_DEMO_H_
#define NACL_IO_DEMO_H_

#include <stdarg.h>
#include "ppapi/c/pp_var.h"

struct PP_Var CStrToVar(const char* str);
char* VprintfToNewString(const char* format, va_list args);
char* PrintfToNewString(const char* format, ...);
struct PP_Var PrintfToVar(const char* format, ...);
uint32_t VarToCStr(struct PP_Var var, char* buffer, uint32_t length);

#endif /* NACL_IO_DEMO_H_ */

/* [<][>][^][v][top][bottom][index][help] */