Ruby
3.4.0dev (2024-11-05 revision 348a53415339076afc4a02fcd09f3ae36e9c4c61)
|
Routines to manipulate encodings of symbols. More...
#include "ruby/internal/config.h"
#include <stdarg.h>
#include "ruby/internal/attr/format.h"
#include "ruby/internal/attr/nonnull.h"
#include "ruby/internal/attr/noreturn.h"
#include "ruby/internal/dllexport.h"
#include "ruby/internal/encoding/encoding.h"
#include "ruby/internal/value.h"
Go to the source code of this file.
Functions | |
VALUE | rb_enc_sprintf (rb_encoding *enc, const char *fmt,...) |
Identical to rb_sprintf(), except it additionally takes an encoding. More... | |
VALUE | rb_enc_vsprintf (rb_encoding *enc, const char *fmt, va_list ap) |
Identical to rb_enc_sprintf(), except it takes a va_list instead of variadic arguments. More... | |
void | rb_enc_raise (rb_encoding *enc, VALUE exc, const char *fmt,...) |
Identical to rb_raise(), except it additionally takes an encoding. More... | |
Routines to manipulate encodings of symbols.
RBIMPL
or rbimpl
are implementation details. Don't take them as canon. They could rapidly appear then vanish. The name (path) of this header file is also an implementation detail. Do not expect it to persist at the place it is now. Developers are free to move it anywhere anytime at will. __VA_ARGS__
is always available. We assume C99 for ruby itself but we don't assume languages of extension libraries. They could be written in C++98. Definition in file sprintf.h.
VALUE rb_enc_sprintf | ( | rb_encoding * | enc, |
const char * | fmt, | ||
... | |||
) |
Identical to rb_sprintf(), except it additionally takes an encoding.
The passed encoding rules both the incoming format specifier and the resulting string.
[in] | enc | Encoding of fmt . |
[in] | fmt | A printf -like format specifier. |
[in] | ... | Variadic number of contents to format. |
enc
encoding. Definition at line 1198 of file sprintf.c.
Referenced by rb_str_format().
VALUE rb_enc_vsprintf | ( | rb_encoding * | enc, |
const char * | fmt, | ||
va_list | ap | ||
) |
Identical to rb_enc_sprintf(), except it takes a va_list
instead of variadic arguments.
It can also be seen as a routine identical to rb_vsprintf(), except it additionally takes an encoding.
[in] | enc | Encoding of fmt . |
[in] | fmt | A printf -like format specifier. |
[in] | ap | Contents to format. |
enc
encoding. Definition at line 1179 of file sprintf.c.
Referenced by rb_enc_raise(), rb_enc_sprintf(), rb_loaderror(), rb_loaderror_with_path(), and rb_vsprintf().