fish-shell/intern.h
James Vega e27664b13b Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
2005-10-05 01:11:39 +10:00

31 lines
640 B
C

/** \file intern.h
Library for pooling common strings
*/
#ifndef FISH_INTERN_H
#define FISH_INTERN_H
#include <wchar.h>
/**
Return an identical copy of the specified string from a pool of unique strings. If the string was not in the pool, add a copy.
\param The string to return an interned copy of
*/
const wchar_t *intern( const wchar_t *in );
/**
Insert the specified string literal into the pool of unique
strings. The string will not first be copied, and it will not be
free'd on exit.
*/
const wchar_t *intern_static( const wchar_t *in );
/**
Free all interned strings
*/
void intern_free_all();
#endif