mirror of https://github.com/citusdata/citus.git
22 lines
499 B
C
22 lines
499 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);
|
|
|
|
#define StringStartsWith(str, prefix) \
|
|
(strncmp(str, prefix, strlen(prefix)) == 0)
|
|
|
|
#endif /* CITUS_STRING_UTILS_H */
|