mirror of https://github.com/citusdata/citus.git
19 lines
413 B
C
19 lines
413 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* string_utils.h
|
|
* Utilities related to strings.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef CITUS_STRING_UTILS_H
|
|
#define CITUS_STRING_UTILS_H
|
|
|
|
#include "postgres.h"
|
|
|
|
extern char * ConvertIntToString(int val);
|
|
|
|
#endif /* CITUS_STRING_UTILS_H */
|