search for: s_opt

Displaying 3 results from an estimated 3 matches for "s_opt".

Did you mean: s_op
2020 Jun 01
1
[PATCH] erlang: Port to libei for Erlang 23
...har *%s;\n" n; - pr " if (atom_equals (ARG (%d), \"undefined\"))\n" i; - pr " %s = NULL;\n" n; - pr " else\n"; - pr " %s = erl_iolist_to_string (ARG (%d));\n" n i + pr " char %s_opt[MAXATOMLEN];\n" n; + pr " if (ei_decode_atom(buff, idx, %s_opt) == 0) {\n" n; + pr " if (atom_equals (%s_opt, \"undefined\"))\n" n; + pr " %s = NULL;\n" n; + pr " else\n"; + pr...
2015 May 28
4
[PATCH 1/4] generator: move api_version to a common version_added
...r "=head2 guestfs_%s\n\n" name; generate_prototype ~extern:false ~indent:" " ~handle:"g" ~prefix:"guestfs_" name (ret, args, []); @@ -334,13 +336,10 @@ and generate_actions_pod_back_compat_entry { name = name; added = added; pr "L</guestfs_%s_opts> with no optional arguments.\n" name; pr "\n"; - let version = api_version added in - pr "(Added in %s)\n\n\n" version; - -and api_version = function - | (0, 0, release) -> sprintf "0.%d" release - | ((0|1) as major, minor, release) -> sprintf &...
2012 Jul 14
6
[PATCH 0/6] Allow non-optargs functions to gain optional arguments.
This rather complex set of patches allow non-optargs functions to gain optional arguments, while preserving source and binary backwards compatibility. The problem is that we cannot add an optional argument to an existing function. For example, we might want to add flags to the 'lvresize' API which currently has no optional arguments.