Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / aggpas / expat-pas / ascii.inc
Size: Mime:
//----------------------------------------------------------------------------
// Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
//                                and Clark Cooper
// Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.
//
// Expat - Version 2.0.0 Release Milano 0.83 (PasExpat 2.0.0 RM0.83)
// Pascal Port By: Milan Marusinec alias Milano
//                 milan@marusinec.sk
//                 http://www.pasports.org/pasexpat
// Copyright (c) 2006
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// [Pascal Port History] -----------------------------------------------------
//
// 17.05.2006-Milano: Unit port establishment
//
{ ascii.inc }
 ASCII_A = char($41 );
 ASCII_B = char($42 );
 ASCII_C = char($43 );
 ASCII_D = char($44 );
 ASCII_E = char($45 );
 ASCII_F = char($46 );
 ASCII_G = char($47 );
 ASCII_H = char($48 );
 ASCII_I = char($49 );
 ASCII_J = char($4A );
 ASCII_K = char($4B );
 ASCII_L = char($4C );
 ASCII_M = char($4D );
 ASCII_N = char($4E );
 ASCII_O = char($4F );
 ASCII_P = char($50 );
 ASCII_Q = char($51 );
 ASCII_R = char($52 );
 ASCII_S = char($53 );
 ASCII_T = char($54 );
 ASCII_U = char($55 );
 ASCII_V = char($56 );
 ASCII_W = char($57 );
 ASCII_X = char($58 );
 ASCII_Y = char($59 );
 ASCII_Z = char($5A );

 ASCII_al = char($61 );
 ASCII_bl = char($62 );
 ASCII_cl = char($63 );
 ASCII_dl = char($64 );
 ASCII_el = char($65 );
 ASCII_fl = char($66 );
 ASCII_gl = char($67 );
 ASCII_hl = char($68 );
 ASCII_il = char($69 );
 ASCII_jl = char($6A );
 ASCII_kl = char($6B );
 ASCII_ll = char($6C );
 ASCII_ml = char($6D );
 ASCII_nl = char($6E );
 ASCII_ol = char($6F );
 ASCII_pl = char($70 );
 ASCII_ql = char($71 );
 ASCII_rl = char($72 );
 ASCII_sl = char($73 );
 ASCII_tl = char($74 );
 ASCII_ul = char($75 );
 ASCII_vl = char($76 );
 ASCII_wl = char($77 );
 ASCII_xl = char($78 );
 ASCII_yl = char($79 );
 ASCII_zl = char($7A );

 ASCII_0 = char($30 );
 ASCII_1 = char($31 );
 ASCII_2 = char($32 );
 ASCII_3 = char($33 );
 ASCII_4 = char($34 );
 ASCII_5 = char($35 );
 ASCII_6 = char($36 );
 ASCII_7 = char($37 );
 ASCII_8 = char($38 );
 ASCII_9 = char($39 );

 ASCII_TAB        = char($09 );
 ASCII_SPACE      = char($20 );
 ASCII_EXCL       = char($21 );
 ASCII_QUOT       = char($22 );
 ASCII_AMP        = char($26 );
 ASCII_APOS       = char($27 );
 ASCII_MINUS      = char($2D );
 ASCII_PERIOD     = char($2E );
 ASCII_COLON      = char($3A );
 ASCII_SEMI       = char($3B );
 ASCII_LT         = char($3C );
 ASCII_EQUALS     = char($3D );
 ASCII_GT         = char($3E );
 ASCII_LSQB       = char($5B );
 ASCII_RSQB       = char($5D );
 ASCII_UNDERSCORE = char($5F );