Jump to content

Call a foreign-language function: Difference between revisions

m
No edit summary
Line 880:
BeginCFunction
char *strdup(const char *src) {
char *dst = malloc(strlen (src) + 1); // Space for length plus nulnull
if (dst == NULL) return NULL; // No memory
strcpy(dst, src); // Copy the characters
Line 897:
Hello, World!
</pre>
 
 
 
=={{header|Go}}==
715

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.