v / vlib / encoding / vorbis / version.v
8 lines · 7 sloc · 301 bytes · 8287d5dd97821042e05ac55803af906c9276825c
Raw
1// Copyright (c) 2025 Delyan Angelov. All rights reserved. Use of this source code
2// is governed by an MIT license that can be found in the LICENSE file.
3module vorbis
4
5// wrapper_version returns the version of stb_vorbis.c, that this module wraps.
6pub fn wrapper_version() string {
7 return '1.22'
8}
9