Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xo_no_setlocale(3) [freebsd man page]

LIBXO(3)						   BSD Library Functions Manual 						  LIBXO(3)

NAME
xo_no_setlocale -- prevent implicit call to setlocale() LIBRARY
library ``libxo'' SYNOPSIS
#include <libxo/xo.h> void xo_no_setlocale(void); DESCRIPTION
libxo automatically initializes the locale based on the setting of the environment variables LC_CTYPE, LANG, and LC_ALL. The first of this list of variables is used and if none of the variables are set, the locale defaults to UTF-8. The caller may wish to avoid this behavior, and can do so by calling the xo_no_setlocale() function. ADDITIONAL DOCUMENTATION
Complete documentation can be found on github: http://juniper.github.io/libxo/libxo-manual.html libxo lives on github as: https://github.com/Juniper/libxo The latest release of libxo is available at: https://github.com/Juniper/libxo/releases SEE ALSO
xo_emit(3), xo_open_container(3), xo_open_list(3), xo_format(5) HISTORY
The libxo library was added in FreeBSD 11.0. AUTHOR
Phil Shafer BSD
December 4, 2014 BSD

Check Out this Related Man Page

LIBXO(3)						   BSD Library Functions Manual 						  LIBXO(3)

NAME
xo_emit -- emit formatted output based on format string and arguments LIBRARY
library ``libxo'' SYNOPSIS
#include <libxo/xo.h> int xo_emit(const char *fmt, ...); int xo_emit_h(xo_handle_t *xop, const char *fmt, ...); int xo_emit_hv(xo_handle_t *xop, const char *fmt, va_list vap); DESCRIPTION
The xo_emit() function emits formatted output using the description in a format string along with a set of zero or more arguments, in a style similar to printf(3) but using a more complex format description string, as described in xo_format(5). xo_emit() uses the default output handle, as described in libxo(3), where xo_emit_h() uses an explicit handle. xo_emit_hv() accepts a va_list for additional flexibility. ADDITIONAL DOCUMENTATION
Complete documentation can be found on github: http://juniper.github.io/libxo/libxo-manual.html libxo lives on github as: https://github.com/Juniper/libxo The latest release of libxo is available at: https://github.com/Juniper/libxo/releases SEE ALSO
xo_open_container(3), xo_open_list(3), xo_format(5) HISTORY
The libxo library was added in FreeBSD 11.0. AUTHOR
Phil Shafer BSD
December 4, 2014 BSD
Man Page

3 More Discussions You Might Find Interesting

1. Programming

Help on digestion of C header files for a short program.

I found a very short but very efficient program to handle big sequence file (>30GB), but could not understand it. https://github.com/lh3/seqtk Wrote to the author but no reply, probably because the program needs comprehensive knowledge of C. Can any C expert "walk me thru" the two header files... (13 Replies)
Discussion started by: yifangt
13 Replies

2. UNIX for Dummies Questions & Answers

How to downgrade cygwin to a part. version?

I'd like to compile gxemul under cygwin, Here a nice guy who ported the source code, but the prerequisites are needing the exact versions of the libraries https://github.com/fd00/yacp/tree/master/gxemul If I download the setup.exe from canonical cygwin web site, it automatically installs me the... (1 Reply)
Discussion started by: lucky7456969
1 Replies

3. Shell Programming and Scripting

Get data from GitHub using Curl

Dear friends, I am working on a bash script to get data from the github by hitting the API using curl and this is quite straight forward. However the authentication mechanism we have in our github servers makes this intricate. Here is the situation : * The github uses SSO / SAML / opensso... (0 Replies)
Discussion started by: Kochappa
0 Replies