1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Polishing: C_STRING_WITH_SIZE() was renamed to C_STRING_WITH_LEN().

This commit is contained in:
unknown
2006-06-19 15:17:15 +04:00
parent 5754a76bbf
commit 7640f51221
5 changed files with 9 additions and 9 deletions

View File

@@ -256,6 +256,6 @@ typedef struct
} LEX_STRING;
#define STRING_WITH_LEN(X) (X), ((uint) (sizeof(X) - 1))
#define C_STRING_WITH_SIZE(X) ((char *) (X)), ((uint) (sizeof(X) - 1))
#define C_STRING_WITH_LEN(X) ((char *) (X)), ((uint) (sizeof(X) - 1))
#endif