]> git.proxmox.com Git - libgit2.git/blame - src/win32/w32_buffer.h
DFSG changes
[libgit2.git] / src / win32 / w32_buffer.h
CommitLineData
cd39e4e2
ET
1/*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7#ifndef INCLUDE_git_win32_buffer_h__
8#define INCLUDE_git_win32_buffer_h__
9
10#include "../buffer.h"
11
12/**
13 * Convert a wide character string to UTF-8 and append the results to the
14 * buffer.
15 */
16int git_buf_put_w(git_buf *buf, const wchar_t *string_w, size_t len_w);
17
18#endif