List of commits:
Subject Hash Author Date (UTC)
fix excessive c99 7c7afb00373813e61be259bae2c097642e717dee Sylvain BERTRAND 2021-05-27 15:04:11
tidy and cosmetics 3475d1fb9c9aaf7cd059b00c1bf791616a6c4118 Sylvain BERTRAND 2021-05-26 23:34:50
/sbin to /bin 5031de4134243797ac2ab9f85262040098ca1bfe Sylvain BERTRAND 2015-02-14 23:29:30
use a real life sysstart 28421b744d0937334e1e0254dff39f45e7d4480d Sylvain BERTRAND 2015-01-20 17:44:51
remove some bash-ism 688ff57cfe8077c235a5ec485ba6b72b0d066dc4 Sylvain BERTRAND 2015-01-07 00:39:53
add some examples 4c3c939272dde88eee1242955d1a7832612d4bbb Sylvain BERTRAND 2014-12-08 17:29:16
Initial commit c72c14065b547486a05ade1b5975e3a1deaf9d18 Sylvain BERTRAND 2014-12-08 15:27:00
Commit 7c7afb00373813e61be259bae2c097642e717dee - fix excessive c99
Author: Sylvain BERTRAND
Author date (UTC): 2021-05-27 15:04
Committer name: Sylvain BERTRAND
Committer date (UTC): 2021-05-27 15:04
Parent(s): 3475d1fb9c9aaf7cd059b00c1bf791616a6c4118
Signing key:
Tree: 0427149bf1b035b64ee59cf8d173e2dfa5b53aa5
File Lines added Lines deleted
ulinux/utils/ascii/string/vsprintf.c 3 1
File ulinux/utils/ascii/string/vsprintf.c changed (mode: 100644) (index f0f6cc4..9337d09)
... ... static ulinux_u8 *number(ulinux_u8 *buf,ulinux_u8 *end,ulinux_u64 num,
286 286 static ulinux_u8 *string(ulinux_u8 *buf,ulinux_u8 *end,ulinux_u8 *s, static ulinux_u8 *string(ulinux_u8 *buf,ulinux_u8 *end,ulinux_u8 *s,
287 287 struct printf_spec spec) struct printf_spec spec)
288 288 { {
289 ulinux_u64 i;
290
289 291 /*XXX:why excluding first page *here*??*/ /*XXX:why excluding first page *here*??*/
290 292 if((ulinux_u64)s<ULINUX_PAGE_SZ) s=(ulinux_u8*)"(null)"; if((ulinux_u64)s<ULINUX_PAGE_SZ) s=(ulinux_u8*)"(null)";
291 293
 
... ... static ulinux_u8 *string(ulinux_u8 *buf,ulinux_u8 *end,ulinux_u8 *s,
298 300 ++buf; ++buf;
299 301 } }
300 302
301 for(ulinux_u64 i=0;i<len;++i){
303 for(i=0;i<len;++i){
302 304 if(buf<end) *buf=*s; if(buf<end) *buf=*s;
303 305 ++buf;++s; ++buf;++s;
304 306 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/sylware/muinit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/sylware/muinit

Clone this repository using git:
git clone git://git.rocketgit.com/user/sylware/muinit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main