Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Dec 2, 2024
1 parent 2746dfe commit 0d5d37d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = "Pcms"
PROJECT_NAME = "PCMS"

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
Expand Down
12 changes: 6 additions & 6 deletions src/pcms/print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

namespace pcms {

FILE* pp_stdout = stdout;
FILE* pp_stderr = stderr;
FILE* pcms_stdout = stdout;
FILE* pcms_stderr = stderr;

FILE* getStdout() { return pp_stdout; }
FILE* getStderr() { return pp_stderr; }
FILE* getStdout() { return pcms_stdout; }
FILE* getStderr() { return pcms_stderr; }

void setStdout(FILE* out) {
assert(out != NULL);
pp_stdout = out;
pcms_stdout = out;
}

void setStderr(FILE* err) {
assert(err != NULL);
pp_stderr = err;
pcms_stderr = err;
}
}

0 comments on commit 0d5d37d

Please sign in to comment.