Sha256: 9e948ee56e53acbbd9c445245bcc8fa1c07ad4fa18e9f3d158b78c42dac3bdd3
Contents?: true
Size: 361 Bytes
Versions: 50
Compression:
Stored size: 361 Bytes
Contents
// -*- objc -*- #include "rays/rays.h" namespace Rays { namespace global { static bool initialized = false; }// global bool init () { if (global::initialized) return false; global::initialized = true; return true; } bool fin () { if (!global::initialized) return false; global::initialized = false; return true; } }// Rays
Version data entries
50 entries across 50 versions & 1 rubygems