mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 21:51:40 +03:00
14 lines
366 B
D
14 lines
366 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/**
|
|
* $(RED Deprecated. Use $(D core.stdc.string) instead. This module will be
|
|
* removed in June 2017.)
|
|
*
|
|
* C's <string.h>
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
*/
|
|
deprecated("Import core.stdc.string instead")
|
|
module std.c.string;
|
|
|
|
public import core.stdc.string;
|