-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEndian.php
More file actions
25 lines (22 loc) · 1.58 KB
/
Endian.php
File metadata and controls
25 lines (22 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**************************************************************************************************\
|* PHP FileStream Beta (0.1a) By Jed Harlen Hall (Hect0r Xorius) *|
|* Contact: *|
|* - Twitter: @SirHect0rius *|
|* - Email: jed@hect0r.com *|
|* License: *|
|* - Free to use, you can make money out of this if you wish, you are not allowed to sell the io *|
|* only, you have to write a project containing the io to sell, thats the rule, all I require *|
|* is a shout out to me as Jed or Hect0r and this header remains in the io files without *|
|* removal. *|
|* - If I find any implementations without the license and no shout I will not be very happy and *|
|* I'll send you a very nasty letter, mmmmkay :) *|
|* Shouts: *|
|* Ayrus *|
\**************************************************************************************************/
// Endian Class, either high or low.
class Endian {
const HIGH = 1;
const LOW = 0;
}
?>