Switch to MySQL everywhere

PUBLISHED_FROM=1ab69ecfbd03ad3eef82ef785474744e5b5b2e4d
This commit is contained in:
Maxim Ignatenko 2016-04-21 18:34:45 +02:00 committed by rojer
parent fa368b56ba
commit c85edc38aa

View File

@ -1,10 +1,11 @@
---
title: "MG_MK_STR()"
decl_name: "MG_MK_STR"
title: "mg_mk_str()"
decl_name: "mg_mk_str"
symbol_kind: "func"
signature: |
#define MG_MK_STR(str_literal);
struct mg_str mg_mk_str(const char *s);
---
Macro for initializing mg_str.
A helper function for creating mg_str struct from plain C string.
`NULL` is allowed and becomes `{NULL, 0}`.