Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using a local clone.

dmd.utils

Compiler implementation of the D programming language. Utility functions for DMD.
This modules defines some utility functions for DMD.
Authors:

Source utils.d

const(char)* toWinPath(const(char)* src);
Normalize path by turning forward slashes into backslashes
Parameters:
const(char)* src Source path, using unix-style ('/') path separators
Returns:
A newly-allocated string with '/' turned into backslashes
void readFile(Loc loc, File* f);
Reads a file, terminate the program on error
Parameters:
Loc loc The line number information from where the call originates
File* f a dmd.root.file.File handle to read
void writeFile(Loc loc, File* f);
Writes a file, terminate the program on error
Parameters:
Loc loc The line number information from where the call originates
File* f a dmd.root.file.File handle to write
void ensurePathToNameExists(Loc loc, const(char)* name);
Ensure the root path (the path minus the name) of the provided path exists, and terminate the process if it doesn't.
Parameters:
Loc loc The line number information from where the call originates
const(char)* name a path to check (the name is stripped)
void escapePath(OutBuffer* buf, const(char)* fname);
Takes a path, and escapes '(', ')' and backslashes
Parameters:
OutBuffer* buf Buffer to write the escaped path to
const(char)* fname Path to escape