Upload files to "stdwullie"

This commit is contained in:
2026-03-26 22:52:46 +00:00
parent 777b80f03e
commit 1fc7b45b3b

76
stdwullie/index.html Normal file
View File

@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WcEngine - WullieStudio</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo"><a class="logoLink" href=../index.html>WullieStudio</a></div>
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="hamburger">
<span></span>
<span></span>
<span></span>
</label>
<ul class="nav-links">
<li><a href="../index.html#about">Home</a></li>
<li><a href="../index.html#projects">Projects</a></li>
<li><a href="https://git.wulliestudio.com/wullie">Git</a></li>
<li><a href="../index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="Dev">
<h1>Stdwulle</h1>
<p>A New standard for the C programming language</p>
</section>
<section class="section">
<h2>About the lib</h2>
<p>
this library started out as a wrapper for printf to add colors to the output<br>
i was having issues with converitng some of the strings so i then expanded it <br>
into having its own print command wich required me not to use glibc. now i use<br>
as a way to see if i can implement fucntions better than glibc.
</p>
</section>
<section id ="projects" class="section">
<h2>Features</h2>
<p>
this feature list does not contain any definitions see the readme on my git for those
</p>
<div class="feature-list">
<h3>System Support</h3>
<p>
the lib currant supports x64 linux and x64 freeBSD, other systems may be supported
in the future, different architectures may be supported in the future depending on
popularity
</p>
</div>
<div class="feature-list">
<h3>Function Testing</h3>
<p>
function testing is handled in the main.c file and can be acceses when compiling
as an executable. for testing run the compiled file in a terminal with an argument
number.
</p>
</div>
<div class="feature-list">
<h3>Seperation for Safety</h3>
<p>
certain function calls have been seperated out into an "un-accessable" file when
compiling to prevent accidental security issues.
</p>
</div>
</section>
</body>
</html>