Next Previous Contents

91. SLang_concat_slstrings

Synopsis

Concatenate two strings to produce a hashed string

Usage

char *SLang_concat_slstrings (char *a, char *b)

Description

The SLang_concat_slstrings function concatenates two strings, a and b, and returns the result as a hashed string. Upon failure, NULL is returned.

Notes

A hashed string can only be freed using SLang_free_slstring. Never use either free or SLfree to free a hashed string, otherwise memory corruption will result.

See Also

SLang_free_slstring, SLang_create_slstring


Next Previous Contents