Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

ANONIX 1.1 beta

Name: Badofold 2011-06-21 22:25

This is ANONIX 1.1 beta, a new library for C/C++ language.

Ⓒ 2011 Badofold

ctype.h

/*
ANONIX 1.1 beta
Done By Badofold in June 2011

File: ctype.h
Directory: .
Full path: ./ctyle.h

Function: Provide declarations of functions for ANONIX

We are Anonymous. We are Legion. We do not forgive. We do not forget. Expect us

Ⓒ 2011 Badofold
*/
#ifndef CTYPE_H_
int isalnum(int c);
int isalpha(int c);
int iscntrl(int c);
int isdigit(int c);
int isgraph(int c);
int islower(int c);
//Ⓒ 2011 Badofold
int isprint(int c);
int ispunct(int c);
int isspace(int c);
int isupper(int c);
int isitasymbol(int c); //Checks if the character is a symbol, written by Badofold in 2011
int isxdigit(int c);
int tolower(int c);
int toupper(int c);
#endif
//Ⓒ 2011 Badofold


[code]
ctype.c
/*
ANONIX 1.1 beta
Done By Badofold in June 2011

File: ctype.c
Directory: .
Full path: ./ctyle.c

Function: Provide function definitions for ANONIX


We are Anonymous. We are Legion. We do not forgive. We do not forget. Expect us

Ⓒ 2011 Badofold
*/
#include "ctype.h"
int isalnum(int c) { return isalpha(c) | isdigit(c); }
int isalpha(int c) { return isupper(c) | islower(c); }
int iscntrl(int c) { return ((c < 0x20) || (c == 0x7f)) ? 1 : 0; }
int isdigit(int c) { return ((c >= '0') && (c <= '9')) ? 1 : 0; }
int isgraph(int c) { return ((c != ' ') && isprint(c)) ? 1 : 0; }
int islower(int c) { return ((c >= 'a') && (c <= 'z')) ? 1 : 0; }
//Ⓒ 2011 Badofold
int isprint(int c) { return ((c >= ' ') && (c <= '~')) ? 1 : 0; }
int ispunct(int c) { return ((c != ' ') && !isalnum(c)) ? 1 : 0; }
int isitasymbol(int c)
{

/*
Function: isitasymbol
Arguments: int c (int, c)

Function: Checks if the character is a symbol W

Written by Badofold in 2011
*/

else if ( c == '&' )
{
    return 1 ;
}

else if ( c == '$' )
{
    return 1 ;
}

else if ( c == '!' )
{
    return 1 ;
}

else
{
    return 0 ; //No symbol found, returning 0
}

}
int isspace(int c) { return ((c == ' ') || (c == '\f') || (c == '\n') || (c == '\r') || (c == '\t') || (c == '\v')) ? 1 : 0; }
int isupper(int c) { return ((c >= 'A') && (c <= 'Z')) ? 1 : 0; }
int isxdigit(int c) { return (((c >= '0') && (c <= '9')) || ((c >= 'a') && (c <= 'f')) || ((c >= 'A') && (c <= 'F'))) ? 1 : 0; }
int tolower(int c) { return isupper(c) ? c - 'A' + 'a' : c; }
int toupper(int c) { return islower(c) ? c - 'a' + 'A' : c; }
//Ⓒ 2011 Badofold

Name: Anonymous 2011-06-21 23:12

What is this crap

Name: Anonymous 2011-06-21 23:21

We are Anonymous. We are Legion. We do not forgive. We do not forget. Expect us
Please, get out.

Name: Anonymous 2011-06-22 3:55

I lol'd.
Most pretentious post in a long time.

Name: Anonymous 2011-06-22 4:02

Satire or stupidity?

Hard to tell these days...

Name: Anonymous 2011-06-22 4:10

>We are Anonymous
>Author nickname all over

Name: Anonymous 2011-06-22 4:18

Why does this have a copyright if it's supposed to be Anonix?

Name: Anonymous 2011-06-22 4:22

>>7
The style doesn't follow the ANONIX CODING GUIDELINES either.

Name: Anonymous 2011-06-22 5:31

Your code is missing something.. hang on...

sizeof(1024)

There. Have fun trolling.

Name: Anonymous 2011-06-22 10:09

POSIX shit.

Who the hell wants compatability with all the shitty programs around.

What's needed is a new system from the ground up.

Name: VIPPER 2011-06-22 10:12

>>10
Working on it. Excpect a working prototype by mid 2012.

Name: Anonymous 2011-06-22 10:14

>>10
Fun fact: Windows NT is POSIX compliant, while Linux isn't.

Name: Anonymous 2011-06-22 10:14

>>11
I don't believe you, VIPPER.

Name: VIPPER 2011-06-22 10:19

>>13
Maybe 2013, depending on how things go.
And it will be a fully lisp interpreted based system with linux as the default kernel.

Name: Anonymous 2011-06-22 10:25

>>14
Post some code to back up your words.

Name: VIPPER 2011-06-22 10:57

ATM i only have a shitty half interpretter and some syscall interfaces. Rather not post it, its REALY shitty.

Name: Anonymous 2011-06-22 11:21

>>16
Do you actually believe you can make it from a REALLY shitty nothing to a working prototype in one year?

Name: VIPPER 2011-06-22 11:30

>>17
Yes, basic crappy shit like a browser, IRC and editor shouldnt be too hard.
I mean like only the most primitive functions implemented.

Name: Anonymous 2011-06-22 14:08

>>16
Syscall interface?

Why the hell would you separate the system from the user space when you are using the perfectly safe LISP?

Name: VIPPER 2011-06-22 14:11

>>19
Because i dont have time to implement a x86 kernel lisp based kernel.

Name: Anonymous 2011-06-22 15:00

VIPPER cannot code for shit. Also, Lisp is fucking gay.

Name: Anonymous 2011-06-22 15:03

ANONUX

Name: Anonymous 2011-06-22 15:49

>>20
Go fuck an AUTISTIC NIGGER FAGGOT.

Name: Anonymous 2011-06-22 18:44

Actually the year 2011 will mark the beginning of an era, the era of the SUSSIX computing device.

Name: Anonymous 2011-07-02 4:11

what is this

Name: VIPPER 2011-07-02 4:25

>>23
No, your mom is already full with them.

Name: Anonymous 2011-07-02 5:15

>>24
I want to believe.

Name: Anonymous 2011-07-02 11:36

cool story

Name: Anonymous 2011-07-02 12:00

>>1
Where's the std::cout? Your library sucks.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List