}
}
+ public string dup_function {
+ get {
+ if (!dup_function_set) {
+ if (ccode != null) {
+ _dup_function = ccode.get_string ("dup_function");
+ }
+ if (_dup_function == null && !sym.external_package && sym is Struct) {
+ _dup_function = "%sdup".printf (lower_case_prefix);
+ }
+ dup_function_set = true;
+ }
+ return _dup_function;
+ }
+ }
+
public string free_function {
get {
if (!free_function_set) {
private bool copy_function_set;
private string? _destroy_function;
private bool destroy_function_set;
+ private string? _dup_function;
+ private bool dup_function_set;
private string? _free_function;
private bool free_function_set;
private bool? _free_function_address_of;
public static string? get_ccode_dup_function (TypeSymbol sym) {
if (sym is Struct) {
- if (sym.external_package) {
- return null;
- } else {
- return get_ccode_lower_case_prefix (sym) + "dup";
- }
+ return get_ccode_attribute (sym).dup_function;
}
return get_ccode_copy_function (sym);
}