#include <cstdarg>#include <cstdio>#include <cassert>#include "celutil/utf8.h"#include "gl.h"#include "vecgl.h"#include "console.h"Include dependency graph for console.cpp:

Go to the source code of this file.
Functions | |
| static int | pmod (int n, int m) |
|
||||||||||||
|
Definition at line 21 of file console.cpp. Referenced by Console::render(). 00022 {
00023 return n >= 0 ? n % m : m - (-(n + 1) % m) - 1;
00024 }
|
1.4.1