You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gnucash/lib/goffice/split/str.h

20 lines
440 B

#ifndef GNUMERIC_STRING_H
#define GNUMERIC_STRING_H
#include "gnumeric.h"
struct _GnmString {
int ref_count;
char *str;
};
void gnm_string_init (void);
void gnm_string_shutdown (void);
GnmString *gnm_string_get (char const *s);
GnmString *gnm_string_get_nocopy (char *s);
GnmString *gnm_string_ref (GnmString *);
void gnm_string_unref (GnmString *);
#endif /* GNUMERIC_STRING_H */