<div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Has anyone used humanize_number in their ls assignment to convert the file size to human readable format?</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">When I use it, I can&#39;t seem to get the precision correct (similar to ls). Here is the relevant code-</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">





<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(52,188,38);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">void</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">print_bytes(</span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">off_t</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"> fileSize,</span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">struct</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"> opts_holder opts){</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">    </span></span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">char</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"> bytes[</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">5</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">];</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">    </span></span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">int64_t</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"> actual_size = (</span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">int64_t</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">)fileSize;</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">    </span></span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">char</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"> * suffix = </span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">&quot;&quot;</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">;<span class="gmail-Apple-converted-space"> </span></span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">    </span></span><span class="gmail-s5" style="font-variant-ligatures:no-common-ligatures;color:rgb(175,173,36)">if</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">(opts._h){</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">        </span></span><span class="gmail-s5" style="font-variant-ligatures:no-common-ligatures;color:rgb(175,173,36)">if</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">(humanize_number(bytes,</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">5</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">,actual_size,suffix,HN_AUTOSCALE,HN_NOSPACE | HN_B)==-</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">1</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">){</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">            </span>printf(</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">&quot;</span><span class="gmail-s6" style="font-variant-ligatures:no-common-ligatures;color:rgb(213,59,211)">%7ld</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)"> &quot;</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">,fileSize);</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">        </span>} </span><span class="gmail-s5" style="font-variant-ligatures:no-common-ligatures;color:rgb(175,173,36)">else</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">            </span>(</span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">void</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">)printf(</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">&quot;</span><span class="gmail-s6" style="font-variant-ligatures:no-common-ligatures;color:rgb(213,59,211)">%5s</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)"> &quot;</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">,bytes);</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">    </span>} </span><span class="gmail-s5" style="font-variant-ligatures:no-common-ligatures;color:rgb(175,173,36)">else</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"> {</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">        </span>(</span><span class="gmail-s3" style="font-variant-ligatures:no-common-ligatures;color:rgb(52,188,38)">void</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">)printf(</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)">&quot;</span><span class="gmail-s6" style="font-variant-ligatures:no-common-ligatures;color:rgb(213,59,211)">%7ld</span><span class="gmail-s4" style="font-variant-ligatures:no-common-ligatures;color:rgb(205,121,35)"> &quot;</span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">,fileSize);</span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures"><span class="gmail-Apple-converted-space">    </span>}<span class="gmail-Apple-converted-space">   </span></span></p>
<p class="gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures;color:rgb(135,135,135)"><span class="gmail-Apple-converted-space"> </span></span><span class="gmail-s2" style="font-variant-ligatures:no-common-ligatures">};</span></p></div><div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">The output I get is-</div>





<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">localhost$ ./ls -alh</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>5 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 .<span class="gmail-Apple-converted-space">                   </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>6 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Sep 29 00:16 .. <span class="gmail-Apple-converted-space">                 </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>7 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Oct<span class="gmail-Apple-converted-space">  </span>6 01:52 .git <span class="gmail-Apple-converted-space">               </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 root <span class="gmail-Apple-converted-space">      </span>users<span class="gmail-Apple-converted-space">  </span>143B Oct<span class="gmail-Apple-converted-space">  </span>6 22:20 Makefile <span class="gmail-Apple-converted-space">           </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>2 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Oct<span class="gmail-Apple-converted-space">  </span>4 18:34 dd <span class="gmail-Apple-converted-space">                 </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rwxr-xr-x<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users <span class="gmail-Apple-converted-space">  </span>15K Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 ls <span class="gmail-Apple-converted-space">                 </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">    </span>6K Oct<span class="gmail-Apple-converted-space">  </span>9 19:10 ls.c <span class="gmail-Apple-converted-space">               </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-------<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>174K Oct<span class="gmail-Apple-converted-space">  </span>9 20:07 ls.core<span class="gmail-Apple-converted-space">             </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>319B Oct<span class="gmail-Apple-converted-space">  </span>5 18:56 ls.h <span class="gmail-Apple-converted-space">               </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">    </span>8K Oct<span class="gmail-Apple-converted-space">  </span>9 19:10 ls.o <span class="gmail-Apple-converted-space">               </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">    </span>3K Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 print_function.c <span class="gmail-Apple-converted-space">   </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>129B Oct<span class="gmail-Apple-converted-space">  </span>5 21:56 print_function.h <span class="gmail-Apple-converted-space">   </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">    </span>5K Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 print_function.o <span class="gmail-Apple-converted-space">   </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>3 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">    </span>1K Oct<span class="gmail-Apple-converted-space">  </span>9 19:38 testdir<span class="gmail-Apple-converted-space">             </span></span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">localhost$ ls -alh</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">total 214K</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>5 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 .</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>6 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Sep 29 00:16 ..</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>7 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Oct<span class="gmail-Apple-converted-space">  </span>6 01:52 .git</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 root <span class="gmail-Apple-converted-space">      </span>users<span class="gmail-Apple-converted-space">  </span>143B Oct<span class="gmail-Apple-converted-space">  </span>6 22:20 Makefile</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">drwxr-xr-x<span class="gmail-Apple-converted-space">  </span>2 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>512B Oct<span class="gmail-Apple-converted-space">  </span>4 18:34 dd</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rwxr-xr-x<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users <span class="gmail-Apple-converted-space">  </span>15K Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 ls</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>5.8K Oct<span class="gmail-Apple-converted-space">  </span>9 19:10 ls.c</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-------<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>174K Oct<span class="gmail-Apple-converted-space">  </span>9 20:07 ls.core</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>319B Oct<span class="gmail-Apple-converted-space">  </span>5 18:56 ls.h</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>7.7K Oct<span class="gmail-Apple-converted-space">  </span>9 19:10 ls.o</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>3.2K Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 print_function.c</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>129B Oct<span class="gmail-Apple-converted-space">  </span>5 21:56 print_function.h</span></p>
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:&quot;Andale Mono&quot;;color:rgb(62,254,20);background-color:rgb(0,0,0)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">-rw-r--r--<span class="gmail-Apple-converted-space">  </span>1 aubhikcr7<span class="gmail-Apple-converted-space">  </span>users<span class="gmail-Apple-converted-space">  </span>5.1K Oct<span class="gmail-Apple-converted-space">  </span>9 20:43 print_function.o</span></p>
<div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">drwxr-xr-x</span><span class="gmail-Apple-converted-space" style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">  </span><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">3 aubhikcr7</span><span class="gmail-Apple-converted-space" style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">  </span><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">users</span><span class="gmail-Apple-converted-space" style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">  </span><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">1.0K Oct</span><span class="gmail-Apple-converted-space" style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">  </span><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(0,0,0);color:rgb(62,254,20);font-family:&quot;Andale Mono&quot;;font-size:14px">9 19:38 testdir</span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">As you can see, the file size for ls.c is 6K in my program whereas the ls command outputs 5.8K. Similarly for other files.</div></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Any help would be appreciated.</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Thanks,</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Aubhik Mazumdar</div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><div><br><br></div></div></div></div></div></div></div></div></div>