removed useless _ folders

This commit is contained in:
Fred Beckhusen
2015-08-09 16:54:31 -05:00
parent fde850293c
commit 948a44dfba
5204 changed files with 2425579 additions and 0 deletions

3
ASCII/ASCII.sol Normal file
View File

@@ -0,0 +1,3 @@
<Solution name="ASCII">
<Project name="ASCII" path="ASCII\ASCII.prj" active="true"/>
</Solution>

6
ASCII/ASCII/ASCII.prj Normal file
View File

@@ -0,0 +1,6 @@
<Project name="ASCII" guid="d6d12ca4-6c00-1014-b904-200204c60a89">
<Object name="Object" guid="d6d12da1-6c00-1014-b904-200204c60a89">
<Script name="ASCII_1.lsl" guid="d6d1502f-6c00-1014-b904-200204c60a89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,24 @@
// :CATEGORY:Strings
// :NAME:ASCII
// :AUTHOR:ChadStatosky
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-25 14:03:03
// :ID:54
// :NUM:81
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// A set of utilities for converting bytes to ASCII
// :CODE:
string ASCII = " \n !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
integer ord(string chr)
{
if(llStringLength(chr) != 1) return -1;
if(chr == " ") return 32;
return llSubStringIndex(ASCII, chr);
}
string chr(integer i)
{
i %= 127;
return llGetSubString(ASCII, i, i);
}