These are the changes to eliminate most of the arbitrary limits in the
[citadel.git] / citadel / support.c
index 8ab6d1e756abbd90b61a6c71244ab05c7e74d7ce..896797617c43b0f8c832621718d6d6cc627ea7f9 100644 (file)
@@ -168,24 +168,6 @@ int getstring(FILE *fp, char *string)
        }
 
 
-/*
- * sort message pointers
- */
-void sort_fullroom(struct fullroom *frptr)
-{
-       int a,b;
-       long hold;
-       for (a=MSGSPERRM-2; a>=0; --a) {
-               for (b=0; b<=a; ++b) {
-                       if ((frptr->FRnum[b]) > (frptr->FRnum[b+1])) {
-                               hold = frptr->FRnum[b];
-                               frptr->FRnum[b] = frptr->FRnum[b+1];
-                               frptr->FRnum[b+1] = hold;
-                               }
-                       }
-               }
-       }
-
 /*
  * pattern2()  -  searches for patn within search string, returns pos 
  */