This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::io; | |
// Get the ROT13ed equivalent of char | |
fn rot13(c: char) -> char { | |
let base = match c { | |
'a'..'z' => 'a' as u8, | |
'A'..'Z' => 'A' as u8, | |
_ => return c | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: lepton/renderermodule.c | |
=================================================================== | |
--- lepton/renderermodule.c (revision 247) | |
+++ lepton/renderermodule.c (working copy) | |
@@ -59,6 +59,9 @@ | |
/* Vertex data functions and structs */ | |
+#pragma pack(push) | |
+#pragma pack(4) |
NewerOlder