guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch for gh.h


From: Ariel Rios
Subject: Patch for gh.h
Date: Mon, 30 Apr 2001 12:10:01 -0400 (EDT)

The following patch adds some macros to gh.h:

#define gh_init () scm_init_guile ()
#define gh_make_string(k, chr) scm_make_string(k, chr);
#define gh_string_length(str)  scm_string_length (str);
#define gh_string_ref(str, k)  scm_string_ref(str, k);
#define gh_string_set_x(str, k, chr) scm_string_set_x(str, k, chr);
#define gh_substring(str, start,end) scm_substring(str, start, end);
#define gh_string_append(args) scm_string_append(args);

I think r5rs functions should be included inside gh.h
so users stay away from libguile as possible

ariel

Attachment: gh.h.patch
Description: Text document


reply via email to

[Prev in Thread] Current Thread [Next in Thread]