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.
20 lines
680 B
20 lines
680 B
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* Copyright 1997 - July 2008 CWI, August 2008 - 2022 MonetDB B.V.
|
|
*/
|
|
|
|
#ifndef _MAL_NAMESPACE_H
|
|
#define _MAL_NAMESPACE_H
|
|
|
|
mal_export void initNamespace(void);
|
|
mal_export const char *putName(const char *nme);
|
|
mal_export const char *putNameLen(const char *nme, size_t len);
|
|
mal_export const char *getName(const char *nme);
|
|
mal_export const char *getNameLen(const char *nme, size_t len);
|
|
mal_export void delName(const char *nme, size_t len);
|
|
|
|
#endif /* _MAL_NAMESPACE_H */
|