logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

unibi_num_from_var, unibi_str_from_var, unibi_var_from_num, unibi_var_from_str - create and inspect

Description

       "unibi_var_from_num" and "unibi_var_from_str" wrap the given int or string in a "unibi_var_t" object for
       use in unibi_format(3) and unibi_run(3).

       unibi_num_from_var(v) returns the number stored in v, which must have been constructed by
       "unibi_var_from_num".  unibi_str_from_var(v) returns the string stored in v, which must have been
       constructed by "unibi_var_from_str".

       It is an error to pass a wrapped string to "unibi_num_from_var" or a wrapped number to
       "unibi_str_from_var".

Name

       unibi_num_from_var, unibi_str_from_var, unibi_var_from_num, unibi_var_from_str - create and inspect
       unibi_var_t values

See Also

unibi_format(3), unibi_run(3), unibilium.h(3)

unibilium-2.1.1                                    2024-03-20                         doc::unibi_var_from_num(3)

Synopsis

        #include <unibilium.h>

        int         unibi_num_from_var(unibi_var_t v);
        const char *unibi_str_from_var(unibi_var_t v);

        unibi_var_t unibi_var_from_num(int i);
        unibi_var_t unibi_var_from_str(char *s);

See Also