]> git.proxmox.com Git - libgit2.git/blob - src/win32/w32_buffer.h
Merge pull request #3352 from ethomson/hidden
[libgit2.git] / src / win32 / w32_buffer.h
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 */
16 int git_buf_put_w(git_buf *buf, const wchar_t *string_w, size_t len_w);
17
18 #endif