mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 14:10:30 +03:00
15 lines
433 B
D
15 lines
433 B
D
|
|
/**
|
|
* $(RED Deprecated. Please use $(D core.stdc.string) instead. This module will
|
|
* be removed in December 2015.)
|
|
* C's <string.h>
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCString
|
|
*/
|
|
|
|
/// Please import core.stdc.string instead. This module will be deprecated in DMD 2.068.
|
|
module std.c.string;
|
|
|
|
public import core.stdc.string;
|