remove_quotes()

Remove double quotes from a string.

Synopsis:

#include <asr/cfg.h>
 
char* remove_quotes(char *string)

Arguments:

string

The string to remove quotes from.

Library:

libasr

Description:

The remove_quotes() function removes double-quote characters from the beginning and end of the specified string. For example, "mystring" becomes mystring.

Returns:

The resulting string.