Changeset 31 for trunk/include


Ignore:
Timestamp:
07/16/05 15:05:19 (19 years ago)
Author:
tim
Message:

Added new lightweight stack library

rewrote test program to use this instead of string concatenation/recursion.

Location:
trunk/include
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/regfio.h

    r30 r31  
    3434#define _REGFIO_H
    3535
     36#include <stdlib.h>
     37#include <stdio.h>
    3638#include <stdbool.h>
    37 #include <stdio.h>
     39#include <string.h>
    3840#include <errno.h>
     41#include <time.h>
    3942#include <fcntl.h>
    4043#include <sys/stat.h>
  • trunk/include/smb_deps.h

    r30 r31  
    2424 */
    2525
     26#include <stdlib.h>
    2627#include <stdbool.h>
    2728#include <stdio.h>
     29#include <string.h>
    2830#include <errno.h>
    2931#include <fcntl.h>
     
    3840void* zalloc(size_t size);
    3941void* zcalloc(size_t size, unsigned int count);
    40 void zerop(void* p);
    41 
    4242
    4343/* From includes.h */
     
    413413
    414414size_t sid_size(const DOM_SID *sid);
    415 static int sid_compare_auth(const DOM_SID *sid1, const DOM_SID *sid2);
     415int sid_compare_auth(const DOM_SID *sid1, const DOM_SID *sid2);
    416416int sid_compare(const DOM_SID *sid1, const DOM_SID *sid2);
    417417bool sid_equal(const DOM_SID *sid1, const DOM_SID *sid2);
Note: See TracChangeset for help on using the changeset viewer.